logInWithSSO function

Future<void> logInWithSSO(
  1. String token
)

Performs the login process by sending an authorization token.

Implementation

Future<void> logInWithSSO(String token) async {
  try {
    await _platform.logInWithSSO(token);
  } catch (error, stackTrace) {
    Error.throwWithStackTrace(error, stackTrace);
  }
}