Created
October 23, 2018 18:48
-
-
Save swat-cat/5690479afcd02dfa92eec3c1ff0fdd7a 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 ValidateEmailAction{ | |
| final String email; | |
| final Screen screen; | |
| ValidateEmailAction(this.email, this.screen); | |
| } | |
| class ChangeLoadingStatusAction{ | |
| final LoadingStatus status; | |
| ChangeLoadingStatusAction(this.status); | |
| } | |
| class NavigateToRegistrationAction{} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment