import 'plant_in_row.dart';
class BeetRow {
int id;
List<PlantInRow> plants = [];
BeetRow(this.id);
}