21 lines
654 B
Dart
21 lines
654 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();
|
|
|
|
Map<String, dynamic> _$DeviceShareListModelToJson(
|
|
DeviceShareListModel instance) =>
|
|
<String, dynamic>{
|
|
'key': instance.key,
|
|
'all': instance.all,
|
|
};
|