GetVerifiedConfig.standard constructor

GetVerifiedConfig.standard({
  1. required ByteData license,
  2. required String faceApiUrl,
  3. required String documentReaderUrl,
  4. ScreensConfig? screens,
  5. Future<bool> onReprocess(
    1. String docTransactionId,
    2. String? faceLivenessTransactionId
    )?,
})

Creates a standard configuration for production use

This preset includes recommended settings for production deployments with balanced security and user experience.

Implementation

factory GetVerifiedConfig.standard({
  required ByteData license,
  required String faceApiUrl,
  required String documentReaderUrl,
  ScreensConfig? screens,
  Future<bool> Function(
    String docTransactionId,
    String? faceLivenessTransactionId,
  )?
  onReprocess,
}) {
  return GetVerifiedConfig(
    license: license,
    faceApiUrl: faceApiUrl,
    documentReaderUrl: documentReaderUrl,
    onReprocess: onReprocess,
    screens: screens,
    // Standard configs will be applied by default
  );
}