Farm constructor

Farm({
  1. String name = "",
  2. int id = 0,
  3. Clock clock = const Clock(),
  4. Communicator? communicator,
  5. bool autoDiscoverRoom = false,
})

Implementation

Farm({
  this.name = "",
  this.id = 0,
  this.clock = const Clock(),
  this.communicator,
  this.autoDiscoverRoom = false,
});