|
- // ignore_for_file: public_member_api_docs, sort_constructors_first
-
- class LocalUser {
- String? token;
- String? name;
- String? mobile;
- int? role;
- List? access;
- String language;
-
- LocalUser(
- {this.token,
- this.name,
- this.mobile,
- this.access,
- this.role,
- this.language = 'en'});
- }
|