23 lines
746 B
Dart
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,
|
|
};
|