mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 03:49:22 +00:00
b917dab5c0
redux
9 lines
209 B
Dart
9 lines
209 B
Dart
abstract class AppConfig {
|
|
static String get appName => prefix + separator + suffix;
|
|
|
|
static String get prefix => "Stack";
|
|
|
|
static String get separator => " ";
|
|
|
|
static String get suffix => "Wallet";
|
|
}
|