Created
October 16, 2021 05:02
-
-
Save vaygeth89/23e9cd6259b7a92f2699e709d8f5f286 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 SignIn { | |
final String email; | |
final String password; | |
SignIn({ | |
required this.email, | |
required this.password, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment