EnrollInitModel constructor
EnrollInitModel({
- String? localizationCode,
- String? enrollEnvironment,
- String? enrollMode,
- String? enrollForcedDocumentType,
- String? tenantId,
- String? tenantSecret,
- String? googleApiKey,
- EnrollColors? colors,
- String? applicantId,
- String? levelOfTrust,
- bool? skipTutorial,
- String? correlationId,
- required dynamic onGettingRequestId(
- String requestId
Constructor for initializing EnrollInitModel with optional settings.
onGettingRequestId
is a callback function that triggers when a request ID is generated.
Implementation
EnrollInitModel(
{this.localizationCode,
this.enrollEnvironment,
this.enrollMode,
this.enrollForcedDocumentType,
this.tenantId,
this.tenantSecret,
this.googleApiKey,
this.colors,
this.applicantId,
this.levelOfTrust,
this.skipTutorial,
this.correlationId,
required Function(String requestId) onGettingRequestId});