message_info.g.dart 924 B

1234567891011121314151617181920212223242526
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'message_info.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. MessageInfo _$MessageInfoFromJson(Map<String, dynamic> json) => MessageInfo(
  7. id: (json['id'] as num).toInt(),
  8. type: (json['type'] as num).toInt(),
  9. senderId: json['senderId'] as String,
  10. senderPhone: json['senderPhone'] as String,
  11. content: json['content'] as String?,
  12. createTime: (json['createTime'] as num).toInt(),
  13. );
  14. Map<String, dynamic> _$MessageInfoToJson(MessageInfo instance) =>
  15. <String, dynamic>{
  16. 'id': instance.id,
  17. 'type': instance.type,
  18. 'senderId': instance.senderId,
  19. 'senderPhone': instance.senderPhone,
  20. 'content': instance.content,
  21. 'createTime': instance.createTime,
  22. };