TankerkoenigStation constructor

TankerkoenigStation(
  1. String id,
  2. String country,
  3. String? name,
  4. String? brand,
  5. String street,
  6. String postalCode,
  7. String place,
  8. LatLng coords,
  9. bool isOpen,
  10. DateTime? closesAt,
  11. double? distance,
  12. List<TankerkoenigStationOpeningTime> openingTime,
  13. List<TankerkoenigStationFuel> fuels,
  14. int? volatility,
)

Implementation

TankerkoenigStation(
  this.id,
  this.country,
  this.name,
  this.brand,
  this.street,
  this.postalCode,
  this.place,
  this.coords,
  this.isOpen,
  this.closesAt,
  this.distance,
  this.openingTime,
  this.fuels,
  this.volatility,
);