mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
9 lines
187 B
Dart
9 lines
187 B
Dart
abstract class AppConfig {
|
|
static const appName = prefix + _separator + suffix;
|
|
|
|
static const prefix = "Stack";
|
|
|
|
static const _separator = " ";
|
|
|
|
static const suffix = "Wallet";
|
|
}
|