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