Location constructor

Location({
  1. List<String>? availablePortSpeeds,
  2. List<String>? availableProviders,
  3. String? locationCode,
  4. String? locationName,
  5. String? region,
})

Implementation

Location({
  this.availablePortSpeeds,
  this.availableProviders,
  this.locationCode,
  this.locationName,
  this.region,
});