更新
This commit is contained in:
@@ -10,11 +10,13 @@ DeviceShareListModel _$DeviceShareListModelFromJson(
|
||||
Map<String, dynamic> json) =>
|
||||
DeviceShareListModel()
|
||||
..key = json['key'] as String?
|
||||
..all = (json['all'] as num?)?.toInt();
|
||||
..all = (json['all'] as num?)?.toInt()
|
||||
..accountKey = json['accountKey'] as String?;
|
||||
|
||||
Map<String, dynamic> _$DeviceShareListModelToJson(
|
||||
DeviceShareListModel instance) =>
|
||||
<String, dynamic>{
|
||||
'key': instance.key,
|
||||
'all': instance.all,
|
||||
'accountKey': instance.accountKey,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user