TokenManager class

A simple manager for handling authentication tokens.

Constructors

TokenManager()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

access Future<String?>
Retrieves the access token from storage.
no setter
refresh Future<String?>
Retrieves the refresh token from storage.
no setter

Static Methods

clear() Future<void>
Clears all tokens from storage.
saveTokens({required String access, String? refresh}) Future<void>
Saves both access and refresh tokens to storage.