Skip to content

Commit

Permalink
[#42] Add Profile model
Browse files Browse the repository at this point in the history
  • Loading branch information
nmint8m committed Feb 14, 2023
1 parent 1dcd6de commit 4a80b23
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib/model/profile.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import 'package:equatable/equatable.dart';

class Profile extends Equatable {
final String id;
final String email;
final String avatarUrl;

const Profile({
required this.id,
required this.email,
required this.avatarUrl,
});

@override
List<Object?> get props => [
id,
email,
avatarUrl,
];
}

0 comments on commit 4a80b23

Please sign in to comment.