22 lines
773 B
Dart
22 lines
773 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'account_bean.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
AccountBean _$AccountBeanFromJson(Map<String, dynamic> json) => AccountBean(
|
|
(json['currency'] as num?)?.toInt(),
|
|
(json['currencyRechargeList'] as List<dynamic>?)
|
|
?.map((e) => RechargeBean.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
Map<String, dynamic> _$AccountBeanToJson(AccountBean instance) =>
|
|
<String, dynamic>{
|
|
'currency': instance.currency,
|
|
'currencyRechargeList':
|
|
instance.currencyRechargeList?.map((e) => e.toJson()).toList(),
|
|
};
|