class Plant { final String name; final double waterRequirement; final double horizontalSpace; final double verticalSpace; Plant({ required this.name, required this.waterRequirement, required this.horizontalSpace, required this.verticalSpace, }); }