StanislavAlpatiev a83b482cbb first commit
2022-05-10 14:08:47 +02:00

7 lines
117 B
Dart

class User {
String email = "";
String password = "";
User(this.email, this.password); //Smart constructor.
}