refresh property

Future<String?> get refresh

Retrieves the refresh token from storage.

Implementation

static Future<String?> get refresh async {
  return AppStorage.getString(_refreshTokenKey);
}