You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
471 B
Dart
13 lines
471 B
Dart
class ASettings {
|
|
static const String user = "user";
|
|
static const String assetGroup = "asset_group";
|
|
static const String host = "host";
|
|
static const String language = "language";
|
|
static const String theme = "theme";
|
|
static const String localAuth = "local_auth";
|
|
static const String speechToText = "speech_to_text";
|
|
static const String rememberMe = "remember_me";
|
|
static const String userName = "username";
|
|
static const String password = "password";
|
|
}
|