Skip to content

Instantly share code, notes, and snippets.

@VB10
Created June 26, 2020 18:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save VB10/6ec10fff906d2cbfc19942b4bd89712b to your computer and use it in GitHub Desktop.
File Manager
abstract class IFileManager {
Future<bool> writeUserRequestDataWithTime(String key, String model, Duration time);
Future<String> getUserRequestDataOnString(String key);
Future<bool> removeUserRequestSingleCache(String key);
Future<bool> removeUserRequestCache(String key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment