| 123456789101112131415161718192021222324252627 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'message_info.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- MessageInfo _$MessageInfoFromJson(Map<String, dynamic> 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<String, dynamic> _$MessageInfoToJson(MessageInfo instance) =>
- <String, dynamic>{
- 'id': instance.id,
- 'type': instance.type,
- 'senderId': instance.senderId,
- 'senderPhone': instance.senderPhone,
- 'content': instance.content,
- 'createTime': instance.createTime,
- };
|