MrzFallbackConfiguration constructor

MrzFallbackConfiguration({
  1. List<String>? acceptedCountries,
  2. List<MrzDocumentType>? acceptedMRZTypes,
})

Implementation

MrzFallbackConfiguration({
  List<String>? acceptedCountries,
  List<MrzDocumentType>? acceptedMRZTypes,
})  : acceptedCountries = acceptedCountries ?? [],
      acceptedMRZTypes = acceptedMRZTypes ?? [],
      super();