toInterface static method

SdkConfigInterface toInterface(
  1. SdkConfig sdkConfig
)

convert a SdkConfig to a SdkConfigInterface

Implementation

static SdkConfigInterface toInterface(
  SdkConfig sdkConfig,
) =>
    SdkConfigInterface(
      domain: sdkConfig.domain,
      clientId: sdkConfig.clientId,
      androidScheme: sdkConfig.androidScheme,
      iosScheme: sdkConfig.iosScheme,
    );