// GENERATED CODE - DO NOT MODIFY BY HAND part of 'device_share_list_controller.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** DeviceShareListModel _$DeviceShareListModelFromJson( Map json) => DeviceShareListModel() ..key = json['key'] as String? ..all = (json['all'] as num?)?.toInt(); Map _$DeviceShareListModelToJson( DeviceShareListModel instance) => { 'key': instance.key, 'all': instance.all, };