// GENERATED CODE - DO NOT MODIFY BY HAND part of 'item_retention_response.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ItemRetentionResponse _$ItemRetentionResponseFromJson( Map json, ) => ItemRetentionResponse( firstAmount: json['firstAmount'] == null ? null : GoodsInfo.fromJson(json['firstAmount'] as Map), secondAmount: json['secondAmount'] == null ? null : GoodsInfo.fromJson(json['secondAmount'] as Map), ); Map _$ItemRetentionResponseToJson( ItemRetentionResponse instance, ) => { 'firstAmount': instance.firstAmount, 'secondAmount': instance.secondAmount, };