getToken static method
Retrieve the stored token
Implementation
static String? getToken() {
final box = Hive.box<String>(_boxName);
return box.get(_tokenKey);
}
Retrieve the stored token
static String? getToken() {
final box = Hive.box<String>(_boxName);
return box.get(_tokenKey);
}