deleteToken static method
Delete the stored token
Implementation
static Future<void> deleteToken() async {
final box = Hive.box<String>(_boxName);
await box.delete(_tokenKey);
}
Delete the stored token
static Future<void> deleteToken() async {
final box = Hive.box<String>(_boxName);
await box.delete(_tokenKey);
}