| 12345678910111213141516171819202122232425 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'keyboard_meme_explain_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- KeyboardMemeExplainResponse _$KeyboardMemeExplainResponseFromJson(
- Map<String, dynamic> json,
- ) => KeyboardMemeExplainResponse(
- constellation: json['constellation'] as String?,
- targetConstellation: json['targetConstellation'] as String?,
- meme: json['meme'] as String?,
- explain: json['explain'] as String?,
- );
- Map<String, dynamic> _$KeyboardMemeExplainResponseToJson(
- KeyboardMemeExplainResponse instance,
- ) => <String, dynamic>{
- 'constellation': instance.constellation,
- 'targetConstellation': instance.targetConstellation,
- 'meme': instance.meme,
- 'explain': instance.explain,
- };
|