9 lines
110 B
Dart
9 lines
110 B
Dart
|
import 'plant_in_row.dart';
|
||
|
|
||
|
class BeetRow {
|
||
|
int id;
|
||
|
List<PlantInRow> plants = [];
|
||
|
|
||
|
BeetRow(this.id);
|
||
|
}
|