admin
2022-04-29 67bdeebb4dc381a2f46f31e3027ebcc3243a8aeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/// close : false
/// content : "这是团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知"
/// link : "http://www.baidu.com"
/// md5 : "6003334c675bc07a627345e406573ef0"
 
class AppNotifyMsgModel {
  AppNotifyMsgModel({
    bool? close,
    String? content,
    String? link,
    String? md5,
  }) {
    _close = close;
    _content = content;
    _link = link;
    _md5 = md5;
  }
 
 
  AppNotifyMsgModel.fromJson(dynamic json) {
    _close = json['close'];
    _content = json['content'];
    _link = json['link'];
    _md5 = json['md5'];
  }
 
  bool? _close;
  String? _content;
  String? _link;
  String? _md5;
 
  bool? get close => _close;
 
  String? get content => _content;
 
  String? get link => _link;
 
  String? get md5 => _md5;
 
  Map<String, dynamic> toJson() {
    final map = <String, dynamic>{};
    map['close'] = _close;
    map['content'] = _content;
    map['link'] = _link;
    map['md5'] = _md5;
    return map;
  }
}