GetVerifiedConfig.standard constructor
GetVerifiedConfig.standard({})
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
);
}