| 12345678910111213141516171819 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'character_custom_generate_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- CharacterCustomGenerateResponse _$CharacterCustomGenerateResponseFromJson(
- Map<String, dynamic> json,
- ) => CharacterCustomGenerateResponse(
- characterInfo: CharacterInfo.fromJson(
- json['characterInfo'] as Map<String, dynamic>,
- ),
- );
- Map<String, dynamic> _$CharacterCustomGenerateResponseToJson(
- CharacterCustomGenerateResponse instance,
- ) => <String, dynamic>{'characterInfo': instance.characterInfo};
|