class RentalContactResponse { int? error; String? message; int? exist; String? city; String? raname; String? mob; String? mail; String? address; String? state; String? accId; int? otp; RentalContactResponse( {this.error, this.message, this.exist, this.city, this.raname, this.mob, this.mail, this.address, this.state, this.accId, this.otp}); RentalContactResponse.fromJson(Map json) { error = json['error']; message = json['message']; exist = json['exist']; city = json['city']; raname = json['raname']; mob = json['mob']; mail = json['mail']; address = json['address']; state = json['state']; accId = json['acc_id']; otp = json['otp']; } Map toJson() { final Map data = new Map(); data['error'] = this.error; data['message'] = this.message; data['exist'] = this.exist; data['city'] = this.city; data['raname'] = this.raname; data['mob'] = this.mob; data['mail'] = this.mail; data['address'] = this.address; data['state'] = this.state; data['acc_id'] = this.accId; data['otp'] = this.otp; return data; } }