BusSpecifications constructor - BusSpecifications - transport library - Dart API
BusSpecifications
BusSpecifications constructor
- int? grossWeightInKilograms = null,
- int? heightInCentimeters = null,
- int? widthInCentimeters = null,
- int? lengthInCentimeters = null,
Creates a new instance.
grossWeightInKilogramsTotal vehicle weight in kilograms. By default, it is not set.heightInCentimetersBus height in centimeters. By default, it is not set.widthInCentimetersBus width in centimeters. By default, it is not set.lengthInCentimetersBus 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;