ConfigCatCache class abstract

A cache API used to make custom cache implementations.

Implementers

Constructors

ConfigCatCache()

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
read(String key) Future<String>
Child classes has to implement this method, the ConfigCatClient is using it to get the actual value from the cache.
toString() String
A string representation of this object.
inherited
write(String key, String value) Future<void>
Child classes has to implement this method, the ConfigCatClient is using it to set the actual cached value.

Operators

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