Init model module
This commit is contained in:
@@ -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];
|
||||
}
|
||||
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user