DeviceUser.fromJson constructor

DeviceUser.fromJson(
  1. Map<String, dynamic> json
)

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'];
}