pushJWTAsync method

Future<void> pushJWTAsync(
  1. String jwt
)

Pushes a given JWT to the Seald server, for example, to add a connector to the current account.

jwt - The JWT to push.

Implementation

Future<void> pushJWTAsync(String jwt) {
  return compute(pushJWT, jwt);
}