FuelPrice constructor

FuelPrice({
  1. FuelType? type,
  2. Money? price,
  3. DateTime? updateTime,
})

Implementation

FuelPrice({
  this.type,
  this.price,
  this.updateTime,
});