mirror of
https://github.com/koloideal/Casha.git
synced 2026-08-08 17:51:14 +03:00
step
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user