firstOwnerName property

TextFieldWrapper? get firstOwnerName

Data element ID "NAC". First Name or Given Name of the Owner. Hyphenated names acceptable, but no other use of special symbols.

Implementation

TextFieldWrapper? get firstOwnerName => document
    .fieldByTypeName("FirstOwnerName")
    ?.let((field) => TextFieldWrapper(field));