Last active
October 9, 2018 04:26
-
-
Save felangel/58ae4be3c9cd1b60e04252392156ad51 to your computer and use it in GitHub Desktop.
[bloc_package] LoginEvent
This file contains 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
abstract class LoginEvent {} | |
class LoginButtonPressed extends LoginEvent { | |
final String username; | |
final String password; | |
LoginButtonPressed({@required this.username, @required this.password}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment