Location constructor

Location({
  1. List<String>? features,
  2. String? locationId,
  3. String? type,
})

Implementation

Location({
  this.features,
  this.locationId,
  this.type,
});