initializeWithProcess static method
Future<AuthenticationWithProcessStep>
initializeWithProcess(
- String? applicationId,
- String baseUrl,
- String messageGatewayUrl,
- String externalServicesSpecId,
- String processId,
- AuthenticationProcessTelecomType userTelecomType,
- String userTelecom,
- CaptchaOptions captcha,
- StorageOptions storageOptions, {
- AuthenticationProcessTemplateParameters authenticationProcessTemplateParameters = const AuthenticationProcessTemplateParameters(),
- SdkOptions options = const SdkOptions(),
Implementation
static Future<AuthenticationWithProcessStep> initializeWithProcess(
String? applicationId,
String baseUrl,
String messageGatewayUrl,
String externalServicesSpecId,
String processId,
AuthenticationProcessTelecomType userTelecomType,
String userTelecom,
CaptchaOptions captcha,
StorageOptions storageOptions,
{
AuthenticationProcessTemplateParameters authenticationProcessTemplateParameters = const AuthenticationProcessTemplateParameters(),
SdkOptions options = const SdkOptions()
}
) {
return CardinalSdkPlatformInterface.instance.initializers.initializeWithProcess(
applicationId,
baseUrl,
messageGatewayUrl,
externalServicesSpecId,
processId,
userTelecomType,
userTelecom,
captcha,
storageOptions,
authenticationProcessTemplateParameters,
options
);
}