Storage class abstract

Abstract class for storage used by the key manager.

Implementers

Constructors

Storage()

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

getInt(String key) Future<int?>
Retrieves an int value with the specified key.
getString(String key) Future<String?>
Retrieves a string value with the specified key.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(String key) Future<void>
Removes a value for the specified key.
setInt(String key, int value) Future<void>
Stores an int value with the specified key.
setString(String key, String value) Future<void>
Stores a string value with the specified key.
toString() String
A string representation of this object.
inherited

Operators

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