class SysData { String? customerServiceWeChat; String? customerServicePhone; SysData({this.customerServiceWeChat, this.customerServicePhone}); SysData.fromJson(Map json) { customerServiceWeChat = json['customerServiceWeChat']; customerServicePhone = json['customerServicePhone']; } Map toJson() { final Map data = new Map(); data['customerServiceWeChat'] = this.customerServiceWeChat; data['customerServicePhone'] = this.customerServicePhone; return data; } }