vehicleColor property

TextFieldWrapper? get vehicleColor

Data element ID "VBD". Where the vehicle is one color, this is the appropriate code describing that color. When the vehicle is two colors, this is the code for the top-most or front-most color.

Implementation

TextFieldWrapper? get vehicleColor => document
    .fieldByTypeName("VehicleColor")
    ?.let((field) => TextFieldWrapper(field));