Sector constructor

Sector({
  1. required int id,
  2. String? clid,
  3. required int locationId,
  4. required String name,
  5. bool isDefault = false,
  6. String? description,
  7. String? approach,
  8. Coordinates? coordinates,
  9. Media? media,
  10. DateTime? createdAt,
})

Creates a new Sector instance

Implementation

Sector({
  required this.id,
  this.clid,
  required this.locationId,
  required this.name,
  this.isDefault = false,
  this.description,
  this.approach,
  this.coordinates,
  this.media,
  this.createdAt,
});