SchemaCacheStore constructor

SchemaCacheStore({
  1. required FilamentTransport transport,
  2. required String path,
  3. FilamentSchemaCache? cache,
  4. String? cacheKey,
})

Implementation

SchemaCacheStore({
  required this._transport,
  required this._path,
  this._cache,
  this._cacheKey,
});