KycWebVerificationEmbed constructor

const KycWebVerificationEmbed({
  1. Key? key,
  2. required String applicantId,
  3. required Uri embedUrl,
  4. void onComplete(
    1. SdkVerificationResponse response
    )?,
  5. void onError(
    1. String message
    )?,
})

Implementation

const KycWebVerificationEmbed({
  super.key,
  required this.applicantId,
  required this.embedUrl,
  this.onComplete,
  this.onError,
});