Skip to content

Instantly share code, notes, and snippets.

@VB10
Created June 6, 2021 01:54
Show Gist options
  • Save VB10/e5cd5541bc6ef23284f4b0bc44225fcc to your computer and use it in GitHub Desktop.
Save VB10/e5cd5541bc6ef23284f4b0bc44225fcc to your computer and use it in GitHub Desktop.
class ItemModelCache extends ItemCache {
late final EncrypData encrypData;
Directory? _directory;
ItemModelCache(ItemModel item) : super(item) {
encrypData = EncrypData();
}
factory ItemModelCache.dummy() {
return ItemModelCache(ItemModel.dummy());
}
..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment