fromInterface static method

SdkConfig fromInterface(
  1. SdkConfigInterface sdkConfigInterface
)

convert a SdkConfigInterface to a SdkConfig

Implementation

static SdkConfig fromInterface(
  SdkConfigInterface sdkConfigInterface,
) =>
    SdkConfig(
      domain: sdkConfigInterface.domain,
      clientId: sdkConfigInterface.clientId,
      androidScheme: sdkConfigInterface.androidScheme,
      iosScheme: sdkConfigInterface.iosScheme,
    );