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