chat_super_reply_response.g.dart 566 B

123456789101112131415
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'chat_super_reply_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. ChatSuperReplyResponse _$ChatSuperReplyResponseFromJson(
  7. Map<String, dynamic> json,
  8. ) => ChatSuperReplyResponse(content: json['content'] as String?);
  9. Map<String, dynamic> _$ChatSuperReplyResponseToJson(
  10. ChatSuperReplyResponse instance,
  11. ) => <String, dynamic>{'content': instance.content};