class RequestStamp { int? tBCropId; int? tbExampleStampId; int? quantity; String? description; String? expiredDate; RequestStamp({ this.tBCropId, this.tbExampleStampId, this.quantity, this.description, this.expiredDate, }); RequestStamp.fromJson(Map json) { tBCropId = json['tBCropId']; tbExampleStampId = json['tbExampleStampId']; quantity = json['quantity']; description = json['description']; expiredDate = json['expiredDate']; } Map toJson() { final Map data = new Map(); data['tBCropId'] = this.tBCropId; data['tbExampleStampId'] = this.tbExampleStampId; data['quantity'] = this.quantity; data['description'] = this.description; data['expiredDate'] = this.expiredDate; return data; } }