KeyValueStore class abstract

Implementers

Constructors

KeyValueStore()

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

containsKey({required String key}) Future<bool>
getBoolean({required String key}) Future<bool?>
getDouble({required String key}) Future<double?>
getInt({required String key}) Future<int?>
getString({required String key}) Future<String?>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
removeKey({required String key}) Future<void>
saveBoolean({required String key, required bool value}) Future<void>
saveDouble({required String key, required double value}) Future<void>
saveInt({required String key, required int value}) Future<void>
saveString({required String key, required String value}) Future<void>
toString() String
A string representation of this object.
inherited

Operators

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