Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

19 řádky
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 = 'en'});
  16. }