initializeWithProcess static method

Future<AuthenticationWithProcessStep> initializeWithProcess(
  1. String? applicationId,
  2. String baseUrl,
  3. String messageGatewayUrl,
  4. String externalServicesSpecId,
  5. String processId,
  6. AuthenticationProcessTelecomType userTelecomType,
  7. String userTelecom,
  8. CaptchaOptions captcha,
  9. StorageOptions storageOptions, {
  10. AuthenticationProcessTemplateParameters authenticationProcessTemplateParameters = const AuthenticationProcessTemplateParameters(),
  11. 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
  );
}