Skip to content

Instantly share code, notes, and snippets.

@ookami-kb
Created June 15, 2020 18:58
Show Gist options
  • Save ookami-kb/3be842f7f442d9d8ddcd1c2af56bdbbe to your computer and use it in GitHub Desktop.
Save ookami-kb/3be842f7f442d9d8ddcd1c2af56bdbbe to your computer and use it in GitHub Desktop.
class AuthenticationManager {
AuthenticationManager(this._restClient);
final RestClient _restClient;
Future<Either<Exception, void>> logOut() =>
_restClient.signOut(SignOutRequest()).toEither();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment