class LoginRequest { String? contactno; int? configid; String? userfcmtoken; String? devicetype; String? deviceid; LoginRequest( {this.contactno, this.configid, this.userfcmtoken, this.devicetype, this.deviceid}); LoginRequest.fromJson(Map json) { contactno = json['contactno']; configid = json['configid']; userfcmtoken = json['userfcmtoken']; devicetype = json['devicetype']; deviceid = json['deviceid']; } Map toJson() { final Map data = new Map(); data['contactno'] = this.contactno; data['configid'] = this.configid; data['userfcmtoken'] = this.userfcmtoken; data['devicetype'] = this.devicetype; data['deviceid'] = this.deviceid; return data; } }