Last active
November 21, 2021 12:40
-
-
Save ttlg/9d73347710c31ac89f86daa0534ebdef 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
enum SortOrder { | |
ASC, | |
DESC, | |
} | |
final _sortOrderState = StateProvider<SortOrder>((ref) => SortOrder.ASC); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment