dateOfBirth property

TextFieldWrapper? get dateOfBirth

Data element ID "DBB". Date on which the cardholder was born. The format is ISO8601 with delimiters.

Implementation

TextFieldWrapper? get dateOfBirth => document
    .fieldByTypeName("DateOfBirth")
    ?.let((field) => TextFieldWrapper(field));