ParseStorageInterface class abstract

Local storage manager for internal library use

Implementers

Constructors

ParseStorageInterface()

Properties

hashCode int
The hash code for this object.
no setterinherited
isMock bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

clear({String? key}) Future<bool>
Clear current key data, or all of it if key is not set
get(String key) Future<Map<String, Object?>?>
Return the Map from a key
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
put(String key, Map<String, Object?> data) Future<bool>
Set Map data using current key
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

instance ParseStorageInterface
The default instance of ParseStorageInterface to use.
getter/setter pair