DeviceUser.fromJson constructor
Implementation
DeviceUser.fromJson(Map<String, dynamic> json) {
authorityList = json['AuthorityList'].cast<String>();
group = json['Group'];
memo = json['Memo'];
name = json['Name'];
password = json['Password'];
passwordV2 = json['PasswordV2'];
reserved = json['Reserved'];
sharable = json['Sharable'];
}