fullDateOfBirth property

DateTime? get fullDateOfBirth

If the document contains the full date of birth it is returned. In case of ICAO compliant documents this is not always present because DG11 is optional.

Implementation

DateTime? get fullDateOfBirth => _map["fullDateOfBirth"] == null
    ? null
    : DateTime.parse(_map["fullDateOfBirth"]);