DistanceResponse constructor

DistanceResponse({
  1. ResponseStatus? status,
  2. String? errorMessage,
  3. List<String>? originAddresses,
  4. List<String>? destinationAddresses,
  5. List<Row>? rows,
})

Implementation

DistanceResponse({
  super.status,
  super.errorMessage,
  this.originAddresses,
  this.destinationAddresses,
  this.rows,
});