You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
887 B

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'recharge_act.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
RechargeAct _$RechargeActFromJson(Map<String, dynamic> json) => RechargeAct()
..preferentialList = (json['preferentialList'] as List<dynamic>?)
?.map((e) => PreferentialList.fromJson(e as Map<String, dynamic>))
.toList()
..channels =
(json['channels'] as List<dynamic>?)?.map((e) => e as String).toList()
..isOpen = json['isOpen'] as bool?;
Map<String, dynamic> _$RechargeActToJson(RechargeAct instance) =>
<String, dynamic>{
'preferentialList':
instance.preferentialList?.map((e) => e.toJson()).toList(),
'channels': instance.channels,
'isOpen': instance.isOpen,
};