CoreStoreSembastImp class
- Implemented types
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
clear(
) → Future< bool> -
override
-
containsKey(
String key) → Future< bool> -
override
-
get(
String key) → Future -
override
-
getBool(
String key) → Future< bool> -
override
-
getDouble(
String key) → Future< double> -
override
-
getInt(
String key) → Future< int> -
override
-
getString(
String key) → Future< String> -
override
-
getStringList(
String key) → Future< List< String> > -
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
remove(
String key) → Future< void> -
override
-
setBool(
String key, bool value) → Future< void> -
override
-
setDouble(
String key, double value) → Future< void> -
override
-
setInt(
String key, int value) → Future< void> -
override
-
setString(
String key, String value) → Future< void> -
override
-
setStringList(
String key, List< String> values) → Future<void> -
override
-
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
Static Methods
-
getInstance(
String dbPath, {DatabaseFactory factory, String password = 'flutter_sdk'}) → Future< CoreStore>