This commit is contained in:
2026-06-28 18:33:46 +03:00
parent 65ea30339d
commit 4727835402
22 changed files with 534 additions and 54 deletions
+9
View File
@@ -0,0 +1,9 @@
enum UserPlan { free, vip }
class UserModel {
final UserPlan plan;
const UserModel({this.plan = UserPlan.free});
bool get isVip => plan == UserPlan.vip;
}