NfcVerificationFlow constructor

const NfcVerificationFlow({
  1. Key? key,
  2. dynamic onVerificationComplete(
    1. VerificationResponse
    )?,
  3. dynamic onError(
    1. String
    )?,
  4. required SotaIdPlugin plugin,
  5. required String documentType,
  6. required String countryCode,
  7. required String countryName,
})

Implementation

const NfcVerificationFlow({
  Key? key,
  this.onVerificationComplete,
  this.onError,
  required this.plugin,
  required this.documentType,
  required this.countryCode,
  required this.countryName,
}) : super(key: key);