Blame view

lib/generated/json/base/json_field.dart 788 Bytes
056970d8   Key   feat: api
1
2
3
4
5
6
  // ignore_for_file: non_constant_identifier_names
  // ignore_for_file: camel_case_types
  // ignore_for_file: prefer_single_quotes
  
  // This file is automatically generated. DO NOT EDIT, all your changes would be lost.
  
4224b3f8   吴启风   feat:支付详情页ui
7
8
9
10
11
  import 'package:meta/meta_meta.dart';
  
  @Target({TargetKind.classType})
  class JsonSerializable {
    const JsonSerializable();
056970d8   Key   feat: api
12
13
  }
  
4224b3f8   吴启风   feat:支付详情页ui
14
  @Target({TargetKind.field})
056970d8   Key   feat: api
15
16
17
18
19
20
  class JSONField {
    //Specify the parse field name
    final String? name;
  
    //Whether to participate in toJson
    final bool? serialize;
993c1a04   liangchengyou   feat:添加数据模型
21
    
056970d8   Key   feat: api
22
23
    //Whether to participate in fromMap
    final bool? deserialize;
993c1a04   liangchengyou   feat:添加数据模型
24
    
4224b3f8   吴启风   feat:支付详情页ui
25
26
27
    //Whether to participate in copyWith
    final bool? copyWith;
    
056970d8   Key   feat: api
28
29
    //Enumeration or not
    final bool? isEnum;
993c1a04   liangchengyou   feat:添加数据模型
30
    
4224b3f8   吴启风   feat:支付详情页ui
31
    const JSONField({this.name, this.serialize, this.deserialize, this.isEnum, this.copyWith});
056970d8   Key   feat: api
32
  }