a7842bddd8
git-subtree-dir: packages/oauth2 git-subtree-mainline:71aa3464b9
git-subtree-split:0bef42c4b9
20 lines
547 B
Dart
20 lines
547 B
Dart
const PseudoApplication pseudoApplication =
|
|
PseudoApplication('foo', 'bar', 'http://foo.bar/baz');
|
|
|
|
class PseudoApplication {
|
|
final String id, secret, redirectUri;
|
|
|
|
const PseudoApplication(this.id, this.secret, this.redirectUri);
|
|
}
|
|
|
|
const List<PseudoUser> pseudoUsers = [
|
|
PseudoUser(username: 'foo', password: 'bar'),
|
|
PseudoUser(username: 'michael', password: 'jackson'),
|
|
PseudoUser(username: 'jon', password: 'skeet'),
|
|
];
|
|
|
|
class PseudoUser {
|
|
final String username, password;
|
|
|
|
const PseudoUser({this.username, this.password});
|
|
}
|