VehicleConfig constructor

VehicleConfig({
  1. bool? canActuateTrunks,
  2. String? carSpecialType,
  3. String? carType,
  4. String? chargePortType,
  5. bool? euVehicle,
  6. String? exteriorColor,
  7. bool? hasLudicrousMode,
  8. bool? motorizedChargePort,
  9. String? perfConfig,
  10. bool? plg,
  11. int? rearSeatHeaters,
  12. int? rearSeatType,
  13. bool? rhd,
  14. String? roofColor,
  15. int? seatType,
  16. String? spoilerType,
  17. int? sunRoofInstalled,
  18. String? thirdRowSeats,
  19. int? timestamp,
  20. String? trimBadging,
  21. String? wheelType,
})

Creates an instance of VehicleConfig.

Takes in several optional parameters each representing a specific configuration of a Tesla vehicle.

Implementation

VehicleConfig({
  this.canActuateTrunks,
  this.carSpecialType,
  this.carType,
  this.chargePortType,
  this.euVehicle,
  this.exteriorColor,
  this.hasLudicrousMode,
  this.motorizedChargePort,
  this.perfConfig,
  this.plg,
  this.rearSeatHeaters,
  this.rearSeatType,
  this.rhd,
  this.roofColor,
  this.seatType,
  this.spoilerType,
  this.sunRoofInstalled,
  this.thirdRowSeats,
  this.timestamp,
  this.trimBadging,
  this.wheelType,
});