CustomCameraWidget constructor

const CustomCameraWidget({
  1. Key? key,
  2. required String documentSide,
  3. SotaIdPlugin? plugin,
  4. VerificationSession? session,
  5. String? documentType,
  6. String? countryCode,
  7. dynamic onVerificationComplete(
    1. VerificationResponse
    )?,
  8. dynamic onError(
    1. String
    )?,
})

Implementation

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