9 lines
301 B
Dart
9 lines
301 B
Dart
class TestUser {
|
|
static const String homeserver = 'https://enter-your-server.here';
|
|
static const String username = 'alice';
|
|
static const String username2 = 'bob';
|
|
static const String displayname = 'Alice';
|
|
static const String displayname2 = 'Bob';
|
|
static const String password = '1234';
|
|
}
|