ente_file.dart 242 B

12345678
  1. // EnteFile is base file entry for various type of files
  2. // like DeviceFile,RemoteFile or TrashedFile
  3. abstract class EnteFile {
  4. // returns cacheKey which should be used while caching entry related to
  5. // this file.
  6. String cacheKey();
  7. }