Files
tuiche/lib/pages/mh_page/device/upgrade/device_upgrade_controller.g.dart
2025-11-13 09:56:02 +08:00

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,
};