IStorageProvider class abstract

Implementers

Constructors

IStorageProvider.new()

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

clear() Future<void>
containsKey(String key) Future<bool>
getAllKeys() Future<Set<String>>
getBool(String key) Future<bool?>
getDouble(String key) Future<double?>
getInt(String key) Future<int?>
getKeys() Future<Set<String>>
getString(String key) Future<String?>
getStringList(String key) Future<List<String>?>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(String key) Future<void>
retrieve(String key) Future<String?>
setBool(String key, bool value) Future<void>
setDouble(String key, double value) Future<void>
setInt(String key, int value) Future<void>
setString(String key, String value) Future<void>
setStringList(String key, List<String> value) Future<void>
store(String key, String value) Future<void>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited