Sensor constructor Null safety

Sensor(
  1. {required String id,
  2. Farm? farm,
  3. Cow? cow,
  4. required List<CowGroup> groups}
)

Implementation

Sensor({
  required this.id,
  this.farm,
  this.cow,
  required this.groups,
});