CacheManager class

Properties

hashCode int
The hash code for this object.
no setterinherited
keys Iterable<String>
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values Iterable
no setter

Methods

clear() → void
hashKey(Type type, String name, [Iterable<Object?> props = const []]) String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pick<T>(String key) → T?
put<T>(String name, {bool? cached, Iterable<Object?> keyProps = const [], required Future<T> callback()}) Future<T>
remove(String key) → dynamic
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

i CacheManager
no setter

Static Methods

cache<T>(String name, {bool? cached, Iterable<Object?> keyProps = const [], required Future<T> callback()}) Future<T>