mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
e174fcc0bc
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";
|
|
}
|