You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 line
323 B

  1. // ignore_for_file: public_member_api_docs, sort_constructors_first
  2. class LocalUser {
  3. String? token;
  4. String? name;
  5. String? mobile;
  6. int? role;
  7. List? access;
  8. String language;
  9. LocalUser(
  10. {this.token,
  11. this.name,
  12. this.mobile,
  13. this.access,
  14. this.role,
  15. this.language = 'fa'});
  16. }