// GENERATED CODE - DO NOT MODIFY BY HAND part of 'mht_bluetooth_controller.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** MHTBlueToothModel _$MHTBlueToothModelFromJson(Map 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 _$MHTBlueToothModelToJson(MHTBlueToothModel instance) => { 'bluetooth': instance.bluetooth, 'singal': instance.singal, 'read': instance.read, 'deviceType': instance.deviceType, 'wifiPassShow': instance.wifiPassShow, 'wifiPass': instance.wifiPass, };