add "access" to businessUser object
This commit is contained in:
parent
56e82d21cf
commit
b2958bdb0e
1 changed files with 3 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ class BusinessUser {
|
||||||
final String app_id;
|
final String app_id;
|
||||||
final String signature;
|
final String signature;
|
||||||
final String title;
|
final String title;
|
||||||
|
final String access;
|
||||||
|
|
||||||
const BusinessUser(
|
const BusinessUser(
|
||||||
this.idbusiness_users,
|
this.idbusiness_users,
|
||||||
|
|
@ -12,6 +13,7 @@ class BusinessUser {
|
||||||
this.app_id,
|
this.app_id,
|
||||||
this.signature,
|
this.signature,
|
||||||
this.title,
|
this.title,
|
||||||
|
this.access,
|
||||||
);
|
);
|
||||||
|
|
||||||
factory BusinessUser.fromJson(dynamic json) {
|
factory BusinessUser.fromJson(dynamic json) {
|
||||||
|
|
@ -21,6 +23,7 @@ class BusinessUser {
|
||||||
json['app_id'],
|
json['app_id'],
|
||||||
json['signature'],
|
json['signature'],
|
||||||
json['title'],
|
json['title'],
|
||||||
|
json['access'],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue