TF-34 Add model UserProfile for fix bug mock data user
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user