SaveManager class
- Implementers
Constructors
-
SaveManager.new({SaveValue<
String> ? saveString, GetValue<String?> ? getString, SaveValue<int> ? saveInt, GetValue<int> ? getInt, SaveValue<double> ? saveDouble, GetValue<double?> ? getDouble, SaveValue<bool> ? saveBool, GetValue<bool?> ? getBool, GetValue? get, GetValue<bool> ? hasKey, GetValue<bool> ? remove})
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
get(
String key) → Future -
getBool(
String key) → Future< bool?> -
getDouble(
String key) → Future< double?> -
getInt(
String key) → Future< int?> -
getString(
String key) → Future< String?> -
hasKey(
String key) → Future< bool> -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
remove(
String key) → Future< bool> -
saveBool(
String key, bool value) → Future< bool?> -
saveDouble(
String key, double value) → Future< bool?> -
saveInt(
String key, int value) → Future< bool?> -
saveString(
String key, String value) → Future< bool?> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited