SharedStorePlugin class

Constructors

SharedStorePlugin()

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

addMMKV(String MMKVId) → void
initMMKV() → void
readBool(String key, {String MMKVId = "default"}) Future<bool?>
readDouble(String key, {String MMKVId = "default"}) Future<double?>
readInt(String key, {String MMKVId = "default"}) Future<int?>
readString(String key, {String MMKVId = "default"}) Future<String?>
removeValue(String key, {String MMKVId = "default"}) → void
storeBool(String key, bool value, {String MMKVId = "default"}) Future<String?>
storeDouble(String key, double value, {String MMKVId = "default"}) Future<String?>
storeInt(String key, int value, {String MMKVId = "default"}) Future<String?>
storeString(String key, String value, {String MMKVId = "default"}) Future<String?>