stack_wallet/lib/whiteLabel.dart
2024-05-14 11:31:16 -06:00

7 lines
166 B
Dart

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