remove method

Future<bool> remove(
  1. SessionKey sessionKey
)

Implementation

Future<bool> remove(SessionKey sessionKey) async {
  SharedPreferences prefs = await _prefs;
  try {
    return await prefs.remove(sessionKey.key);
  } catch (e) {
    throw Exception(
        "It wasn't possible to remove this item from the auth. This can be triggered if the auth no longer exists or if the key is not correct. ");
  }
}