TF-34 Add model UserProfile for fix bug mock data user

This commit is contained in:
dab246
2021-08-25 13:08:56 +07:00
committed by Dat H. Pham
parent 9b79609854
commit b50cec44c2
7 changed files with 136 additions and 23 deletions
@@ -0,0 +1,11 @@
import 'package:equatable/equatable.dart';
class PresentationEmailAddress with EquatableMixin {
final String email;
PresentationEmailAddress(this.email);
@override
List<Object?> get props => [email];
}