enum UserRole { owner('owner'), admin('admin'); final String role; const UserRole(this.role); }