DocumentChoiceWidget constructor

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

Implementation

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