// GENERATED CODE - DO NOT MODIFY BY HAND part of 'chat_state.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _ChatState _$ChatStateFromJson(Map json) => _ChatState( currentToken: json['currentToken'] as String? ?? '', chatResponse: json['chatResponse'] == null ? null : GetChatResponse.fromJson(json['chatResponse'] as Map), referenceMessageId: (json['referenceMessageId'] as num?)?.toInt(), ); Map _$ChatStateToJson(_ChatState instance) => { 'currentToken': instance.currentToken, 'chatResponse': instance.chatResponse, 'referenceMessageId': instance.referenceMessageId, };