AutomobileModel constructor

AutomobileModel({
  1. String? name,
  2. String? model,
  3. String? bodyType,
  4. double? mileage,
  5. int? engineInCC,
  6. double? bhp,
  7. String? transmission,
  8. int? seatingCapacity,
  9. int? fuelTankCapacity,
  10. String? fuelType,
  11. bool? isTransmissionAutomatic,
})

Implementation

AutomobileModel({
  this.name,
  this.model,
  this.bodyType,
  this.mileage,
  this.engineInCC,
  this.bhp,
  this.transmission,
  this.seatingCapacity,
  this.fuelTankCapacity,
  this.fuelType,
  this.isTransmissionAutomatic,
});