27 lines
1011 B
Dart
27 lines
1011 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'mht_bluetooth_controller.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
MHTBlueToothModel _$MHTBlueToothModelFromJson(Map<String, dynamic> json) =>
|
|
MHTBlueToothModel()
|
|
..bluetooth = json['bluetooth'] as bool?
|
|
..singal = (json['singal'] as num?)?.toDouble()
|
|
..read = (json['read'] as num?)?.toInt()
|
|
..deviceType = (json['deviceType'] as num?)?.toInt()
|
|
..wifiPassShow = json['wifiPassShow'] as bool
|
|
..wifiPass = json['wifiPass'] as String?;
|
|
|
|
Map<String, dynamic> _$MHTBlueToothModelToJson(MHTBlueToothModel instance) =>
|
|
<String, dynamic>{
|
|
'bluetooth': instance.bluetooth,
|
|
'singal': instance.singal,
|
|
'read': instance.read,
|
|
'deviceType': instance.deviceType,
|
|
'wifiPassShow': instance.wifiPassShow,
|
|
'wifiPass': instance.wifiPass,
|
|
};
|