driverLastName property

TextFieldWrapper? get driverLastName

Data element ID "DAB". Last name or surname of the individual holding the Driver License or ID. Hyphenated names acceptable, but no other use of special symbols.

Implementation

TextFieldWrapper? get driverLastName => document
    .fieldByTypeName("DriverLastName")
    ?.let((field) => TextFieldWrapper(field));