CacheInfo class abstract

Provides high level information about a cache.

Constructors

CacheInfo({required int numEntries, required int maxEntries, List<String>? keys})
factory
CacheInfo.fromJson(Map<String, dynamic> jsonSerialization, SerializationManager serializationManager)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
keys List<String>?
Optional list of keys used by the cache.
getter/setter pair
maxEntries int
Maximum number of entries that can be stored in the cache.
getter/setter pair
numEntries int
Number of entries stored in the cache.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

allToJson() → dynamic
Returns a serialized JSON structure of the model which also includes fields used by the database.
inherited
copyWith({int? numEntries, int? maxEntries, List<String>? keys}) CacheInfo
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns a serialized JSON structure of the model, ready to be sent through the API. This does not include fields that are marked as database only.
toString() String
A string representation of this object.
inherited

Operators

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