VerificationScreen constructor

const VerificationScreen({
  1. Key? key,
  2. required String apiKey,
  3. required String verificationId,
  4. required String phoneNumber,
  5. required bool isAddressCheck,
  6. required bool isOtpRequired,
  7. String addressCheckType = 'standard',
  8. String verificationType = 'ID Verification',
  9. String agentId = '',
})

Implementation

const VerificationScreen({
  super.key,
  required this.apiKey,
  required this.verificationId,
  required this.phoneNumber,
  required this.isAddressCheck,
  required this.isOtpRequired,
  this.addressCheckType = 'standard',
  this.verificationType = 'ID Verification',
  this.agentId = '',
});