MotorVehicleProfile constructor

MotorVehicleProfile({
  1. int mass = 0,
  2. double maxSpeed = 0,
  3. FuelType fuel = FuelType.petrol,
})

Implementation

MotorVehicleProfile({
  this.mass = 0,
  this.maxSpeed = 0,
  this.fuel = FuelType.petrol,
});