stack_wallet/lib/app_config.dart

10 lines
209 B
Dart
Raw Normal View History

abstract class AppConfig {
2024-05-13 18:02:39 +00:00
static String get appName => prefix + separator + suffix;
2024-05-13 17:48:05 +00:00
2024-05-13 18:02:39 +00:00
static String get prefix => "Stack";
2024-05-13 17:48:05 +00:00
2024-05-13 18:02:39 +00:00
static String get separator => " ";
static String get suffix => "Wallet";
2024-05-13 17:48:05 +00:00
}