character_custom_config_response.g.dart 762 B

12345678910111213141516171819202122
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'character_custom_config_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. CharacterCustomConfigResponse _$CharacterCustomConfigResponseFromJson(
  7. Map<String, dynamic> json,
  8. ) => CharacterCustomConfigResponse(
  9. customConfig:
  10. json['customConfig'] == null
  11. ? null
  12. : CustomConfigInfo.fromJson(
  13. json['customConfig'] as Map<String, dynamic>,
  14. ),
  15. );
  16. Map<String, dynamic> _$CharacterCustomConfigResponseToJson(
  17. CharacterCustomConfigResponse instance,
  18. ) => <String, dynamic>{'customConfig': instance.customConfig};