修改ui设计错误
This commit is contained in:
20
lib/controller/mh_controller/device_list_controller.g.dart
Normal file
20
lib/controller/mh_controller/device_list_controller.g.dart
Normal file
@@ -0,0 +1,20 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'device_list_controller.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
DeviceListModel _$DeviceListModelFromJson(Map<String, dynamic> json) =>
|
||||
DeviceListModel()
|
||||
..deviceList = (json['deviceList'] as List<dynamic>)
|
||||
.map((e) => DeviceModel.fromJson(e as Map<String, dynamic>))
|
||||
.toList()
|
||||
..deviceListWyf = json['deviceListWyf'] as List<dynamic>;
|
||||
|
||||
Map<String, dynamic> _$DeviceListModelToJson(DeviceListModel instance) =>
|
||||
<String, dynamic>{
|
||||
'deviceList': instance.deviceList,
|
||||
'deviceListWyf': instance.deviceListWyf,
|
||||
};
|
||||
Reference in New Issue
Block a user