clearAuthToken static method
Implementation
static Future<void> clearAuthToken() async {
try {
await _ensureHive();
await Hive.box(boxName).delete(tokenKey);
} catch (_) {}
}
static Future<void> clearAuthToken() async {
try {
await _ensureHive();
await Hive.box(boxName).delete(tokenKey);
} catch (_) {}
}