ZwapStorage class

Constructors

ZwapStorage()
factory

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

getBool(String key) Future<bool>
It retrieves a bool value from the localStorage. It returns a false value if this value is not present
getString(String key) Future<String>
It retrieves a string value from the localStorage. It returns an empty string if this value is not present
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
putBool(String key, bool value) Future<bool>
It puts a bool value inside the localStorage
putString(String key, String value) → void
It puts the string value inside the localStorage
removeValue(String key) → void
It removes a value from the localStorage
toString() String
A string representation of this object.
inherited

Operators

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