Storage class

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
storage StorageDartWrapper
getter/setter pair

Methods

dispose() → void
get(String key) Future<String?>
Method to make get. It's called from rust
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(String key) Future<void>
Method to make remove. It's called from rust
removeUnchecked(String key) → void
Method to make removeUnchecked. It's called from rust
set(String key, String value) Future<void>
Method to make set. It's called from rust
setUnchecked(String key, String value) → void
Method to make setUnchecked. It's called from rust
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

create({required StorageGet get, required StorageSet set, required StorageSetUnchecked setUnchecked, required StorageRemove remove, required StorageRemoveUnchecked removeUnchecked}) Storage