logInWithSSO function
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);
}
}