persistent property Null safety

dynamic persistent

Implementation

static FileCache get persistent {
  _longLivingCache ??= FileCacheImpl(
    rootDirectory: getApplicationDocumentsDirectory(),
    subFolderName: 'persistent',
  );

  return _longLivingCache!;
}