Blame view

lib/models/response_model.g.dart.txt 623 Bytes
a117a5a3   liangchengyou   feat:更新代码
1
2
  // GENERATED CODE - DO NOT MODIFY BY HAND
  
056970d8   Key   feat: api
3
  part of 'response_model.dart.txt';
a117a5a3   liangchengyou   feat:更新代码
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  
  // **************************************************************************
  // JsonSerializableGenerator
  // **************************************************************************
  
  ResponseModel _$ResponseModelFromJson(Map<String, dynamic> json) =>
      ResponseModel(
        json['code'] as int?,
        json['data'],
        json['msg'] as String?,
      );
  
  Map<String, dynamic> _$ResponseModelToJson(ResponseModel instance) =>
      <String, dynamic>{
        'code': instance.code,
        'data': instance.data,
        'msg': instance.msg,
      };