選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

19 行
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. }