strictExpiryDate property

bool? get strictExpiryDate

When disabled, date of expiry doesn't affect the mrz and text statuses.

Implementation

bool? get strictExpiryDate => _strictExpiryDate;
set strictExpiryDate (bool? val)

Implementation

set strictExpiryDate(bool? val) {
  _strictExpiryDate = val;
  _set({"strictExpiryDate": val});
}