Location constructor

Location({
  1. String? name,
  2. String? region,
  3. bool? deleteAssignedStops,
  4. String? placeDefaultText,
})

Implementation

Location({
  this.name,
  this.region,
  this.deleteAssignedStops,
  this.placeDefaultText,
});