BusSpecifications constructor

BusSpecifications([
  1. int? grossWeightInKilograms = null,
  2. int? heightInCentimeters = null,
  3. int? widthInCentimeters = null,
  4. int? lengthInCentimeters = null,
])

Creates a new instance.

  • grossWeightInKilograms Total vehicle weight in kilograms. By default, it is not set.
  • heightInCentimeters Bus height in centimeters. By default, it is not set.
  • widthInCentimeters Bus width in centimeters. By default, it is not set.
  • lengthInCentimeters Bus length in centimeters. By default, it is not set.

Implementation

BusSpecifications([int? grossWeightInKilograms = null, int? heightInCentimeters = null, int? widthInCentimeters = null, int? lengthInCentimeters = null])
  : grossWeightInKilograms = grossWeightInKilograms, heightInCentimeters = heightInCentimeters, widthInCentimeters = widthInCentimeters, lengthInCentimeters = lengthInCentimeters;