Init model module

This commit is contained in:
dab246
2021-07-27 12:51:15 +07:00
committed by Dat H. Pham
parent 5b0a8f6fb2
commit c235fcdecd
12 changed files with 374 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:equatable/equatable.dart';
class Password with EquatableMixin {
final String value;
Password(this.value);
@override
List<Object> get props => [value];
}
+10
View File
@@ -0,0 +1,10 @@
import 'package:equatable/equatable.dart';
class UserName with EquatableMixin {
final String userName;
UserName(this.userName);
@override
List<Object> get props => [userName];
}