customerMiddleName property

TextFieldWrapper? get customerMiddleName

Data element ID "DAD". Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma “,”.

Implementation

TextFieldWrapper? get customerMiddleName => document
    .fieldByTypeName("CustomerMiddleName")
    ?.let((field) => TextFieldWrapper(field));