// GENERATED CODE - DO NOT MODIFY BY HAND part of 'new_user_get_character_response.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** NewUserGetCharacterResponse _$NewUserGetCharacterResponseFromJson( Map json, ) => NewUserGetCharacterResponse( characterInfo: (json['characterInfos'] as List) .map((e) => CharacterInfo.fromJson(e as Map)) .toList(), ); Map _$NewUserGetCharacterResponseToJson( NewUserGetCharacterResponse instance, ) => {'characterInfos': instance.characterInfo};