21 lines
693 B
Dart
21 lines
693 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'device_upgrade_controller.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
MHTDeviceUpgradeModel _$MHTDeviceUpgradeModelFromJson(
|
|
Map<String, dynamic> json) =>
|
|
MHTDeviceUpgradeModel()
|
|
..bluetooth = json['bluetooth'] as bool?
|
|
..singal = (json['singal'] as num?)?.toDouble();
|
|
|
|
Map<String, dynamic> _$MHTDeviceUpgradeModelToJson(
|
|
MHTDeviceUpgradeModel instance) =>
|
|
<String, dynamic>{
|
|
'bluetooth': instance.bluetooth,
|
|
'singal': instance.singal,
|
|
};
|