fetchAuthSession method

Future<AuthSession> fetchAuthSession({
  1. AuthSessionOptions? options,
})

Implementation

Future<AuthSession> fetchAuthSession({
  AuthSessionOptions? options,
}) {
  var request = AuthSessionRequest(options: options);
  return plugins.length == 1
      ? plugins[0].fetchAuthSession(request: request)
      : throw _pluginNotAddedException('Auth');
}