unpersistSession static method

Future<void> unpersistSession()

Remove the persisted session on the disk

Implementation

static Future<void> unpersistSession() {
  final box = Hive.box(_boxName);
  return box.delete(_sessionInfoKey);
}