loginWithProvider method

Future<AuthTokenInterface> loginWithProvider({
  1. required ReachFiveKeyInterface reachFiveKey,
  2. required String provider,
  3. required String origin,
  4. List<String>? scope,
})
inherited

Implementation

Future<AuthTokenInterface> loginWithProvider({
  required ReachFiveKeyInterface reachFiveKey,
  required String provider,
  required String origin,
  List<String>? scope,
}) =>
    reachFiveHostApi.loginWithProvider(
      LoginWithProviderRequestInterface(
        reachFiveKey: reachFiveKey,
        provider: provider,
        origin: origin,
        scope: scope,
        errorCodes: errorCodesInterface,
      ),
    );