Files
tuiche/lib/controller/device/device_share_list_controller.g.dart
2025-05-23 18:17:04 +08:00

23 lines
746 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'device_share_list_controller.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
DeviceShareListModel _$DeviceShareListModelFromJson(
Map<String, dynamic> json) =>
DeviceShareListModel()
..key = json['key'] as String?
..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,
};