Created
June 6, 2021 01:54
-
-
Save VB10/e5cd5541bc6ef23284f4b0bc44225fcc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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