| 12345678910111213141516171819202122 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'character_custom_config_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- CharacterCustomConfigResponse _$CharacterCustomConfigResponseFromJson(
- Map<String, dynamic> json,
- ) => CharacterCustomConfigResponse(
- customConfig:
- json['customConfig'] == null
- ? null
- : CustomConfigInfo.fromJson(
- json['customConfig'] as Map<String, dynamic>,
- ),
- );
- Map<String, dynamic> _$CharacterCustomConfigResponseToJson(
- CharacterCustomConfigResponse instance,
- ) => <String, dynamic>{'customConfig': instance.customConfig};
|