stack_wallet/lib/whiteLabel.dart
2024-05-13 14:29:11 -05:00

7 lines
166 B
Dart

abstract class WhiteLabel {
String get appName => appNamePrefix + appNameSuffix;
String get appNamePrefix => "Stack";
String get appNameSuffix => "Wallet";
}