VehicleState constructor

VehicleState({
  1. int? apiVersion,
  2. String? autoparkState,
  3. String? autoparkStateV2,
  4. String? autoparkStyle,
  5. bool? calendarSupported,
  6. String? carVersion,
  7. int? centerDisplayState,
  8. int? df,
  9. int? dr,
  10. int? ft,
  11. bool? homelinkNearby,
  12. String? lastAutoparkError,
  13. bool? locked,
  14. bool? notificationsSupported,
  15. double? odometer,
  16. bool? parsedCalendarSupported,
  17. int? pf,
  18. int? pr,
  19. bool? remoteStart,
  20. bool? remoteStartSupported,
  21. int? rt,
  22. int? sunRoofPercentOpen,
  23. String? sunRoofState,
  24. int? timestamp,
  25. bool? valetMode,
  26. String? vehicleName,
})

Creates a new instance of the VehicleState.

All parameters are optional and can be supplied as named parameters.

Implementation

VehicleState({
  this.apiVersion,
  this.autoparkState,
  this.autoparkStateV2,
  this.autoparkStyle,
  this.calendarSupported,
  this.carVersion,
  this.centerDisplayState,
  this.df,
  this.dr,
  this.ft,
  this.homelinkNearby,
  this.lastAutoparkError,
  this.locked,
  this.notificationsSupported,
  this.odometer,
  this.parsedCalendarSupported,
  this.pf,
  this.pr,
  this.remoteStart,
  this.remoteStartSupported,
  this.rt,
  this.sunRoofPercentOpen,
  this.sunRoofState,
  this.timestamp,
  this.valetMode,
  this.vehicleName,
});