VerificationScreen constructor

const VerificationScreen({
  1. Key? key,
  2. required ApiService apiService,
  3. Environment environment = Environment.SANDBOX,
  4. dynamic onComplete(
    1. VerificationResult
    )?,
  5. dynamic onError(
    1. String
    )?,
})

Implementation

const VerificationScreen({
  super.key,
  required this.apiService,
  this.environment = Environment.SANDBOX,
  this.onComplete,
  this.onError,
});