This commit is contained in:
wyf
2025-05-23 18:17:04 +08:00
parent c650bad8b1
commit acfb262812
17 changed files with 673 additions and 485 deletions

View File

@@ -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,
};