// GENERATED CODE - DO NOT MODIFY BY HAND part of 'message_info.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** MessageInfo _$MessageInfoFromJson(Map json) => MessageInfo( id: (json['id'] as num).toInt(), type: (json['type'] as num).toInt(), senderId: json['senderId'] as String, senderPhone: json['senderPhone'] as String, content: json['content'] as String?, createTime: (json['createTime'] as num).toInt(), ); Map _$MessageInfoToJson(MessageInfo instance) => { 'id': instance.id, 'type': instance.type, 'senderId': instance.senderId, 'senderPhone': instance.senderPhone, 'content': instance.content, 'createTime': instance.createTime, };