// GENERATED CODE - DO NOT MODIFY BY HAND part of 'message_state.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$MessageStateImpl _$$MessageStateImplFromJson(Map json) => _$MessageStateImpl( author: Typed.fromJson(json['author']), timestamp: Timestamp.fromJson(json['timestamp']), text: json['text'] as String, sendState: json['send_state'] == null ? null : MessageSendState.fromJson(json['send_state']), ); Map _$$MessageStateImplToJson(_$MessageStateImpl instance) => { 'author': instance.author.toJson(), 'timestamp': instance.timestamp.toJson(), 'text': instance.text, 'send_state': instance.sendState?.toJson(), };