class Crop { num? id; String? qrCode; String? code; double? areaM2; num? type; String? startDate; String? endDate; String? status; String? description; num? ageDayStartAt; num? tbSuppliesId; String? suppliesName; num? tbGuidelineId; num? netHouseId; String? netHouseName; num? areaId; String? area; Crop( {this.id, this.qrCode, this.code, this.areaM2, this.type, this.startDate, this.endDate, this.status, this.description, this.ageDayStartAt, this.tbSuppliesId, this.suppliesName, this.tbGuidelineId, this.netHouseId, this.netHouseName, this.areaId, this.area}); Crop.fromJson(Map json) { id = json['id']; qrCode = json['qrCode']; code = json['code']; areaM2 = json['areaM2']; type = json['type']; startDate = json['startDate']; endDate = json['endDate']; status = json['status']; description = json['description']; ageDayStartAt = json['ageDayStartAt']; tbSuppliesId = json['tbSuppliesId']; suppliesName = json['suppliesName']; tbGuidelineId = json['tbGuidelineId']; netHouseId = json['netHouseId']; netHouseName = json['netHouseName']; areaId = json['areaId']; area = json['area']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['qrCode'] = this.qrCode; data['code'] = this.code; data['areaM2'] = this.areaM2; data['type'] = this.type; data['startDate'] = this.startDate; data['endDate'] = this.endDate; data['status'] = this.status; data['description'] = this.description; data['ageDayStartAt'] = this.ageDayStartAt; data['tbSuppliesId'] = this.tbSuppliesId; data['suppliesName'] = this.suppliesName; data['tbGuidelineId'] = this.tbGuidelineId; data['netHouseId'] = this.netHouseId; data['netHouseName'] = this.netHouseName; data['areaId'] = this.areaId; data['area'] = this.area; return data; } }