mirror of
https://github.com/koloideal/Casha.git
synced 2026-08-08 17:51:14 +03:00
18 lines
304 B
Dart
18 lines
304 B
Dart
import 'feature_flags.dart';
|
|
|
|
class VipFeatureFlags implements FeatureFlags {
|
|
const VipFeatureFlags();
|
|
|
|
@override
|
|
bool get canEditCardColors => true;
|
|
|
|
@override
|
|
bool get canEditCardHeight => true;
|
|
|
|
@override
|
|
bool get canEditCardTextColor => true;
|
|
|
|
@override
|
|
int get maxAccounts => 8;
|
|
}
|