character_custom_update_response.g.dart 683 B

12345678910111213141516171819
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'character_custom_update_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. CharacterCustomUpdateResponse _$CharacterCustomUpdateResponseFromJson(
  7. Map<String, dynamic> json,
  8. ) => CharacterCustomUpdateResponse(
  9. characterInfo: CharacterInfo.fromJson(
  10. json['characterInfo'] as Map<String, dynamic>,
  11. ),
  12. );
  13. Map<String, dynamic> _$CharacterCustomUpdateResponseToJson(
  14. CharacterCustomUpdateResponse instance,
  15. ) => <String, dynamic>{'characterInfo': instance.characterInfo};