PdfValidationCacheHooks constructor

const PdfValidationCacheHooks({
  1. Future<Object?> get(
    1. String key
    )?,
  2. Future<void> put(
    1. String key,
    2. Object value,
    3. Duration ttl
    )?,
  3. Future<String?> getJson(
    1. String key
    )?,
  4. Future<void> putJson(
    1. String key,
    2. String value,
    3. Duration ttl
    )?,
})

Implementation

const PdfValidationCacheHooks({
  this.get,
  this.put,
  this.getJson,
  this.putJson,
});