summaryrefslogtreecommitdiffstats
path: root/lib/data/models/user.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/data/models/user.dart')
-rw-r--r--lib/data/models/user.dart54
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/data/models/user.dart b/lib/data/models/user.dart
new file mode 100644
index 0000000..b163c5e
--- /dev/null
+++ b/lib/data/models/user.dart
@@ -0,0 +1,54 @@
+import 'dart:convert';
+
+import 'package:flutter_ics_homescreen/export.dart';
+
+@immutable
+class User {
+ final String id;
+ final String name;
+ const User({
+ required this.id,
+ required this.name,
+ });
+
+ User copyWith({
+ String? id,
+ String? name,
+ }) {
+ return User(
+ id: id ?? this.id,
+ name: name ?? this.name,
+ );
+ }
+
+ Map<String, dynamic> toMap() {
+ return {
+ 'id': id,
+ 'name': name,
+ };
+ }
+
+ factory User.fromMap(Map<String, dynamic> map) {
+ return User(
+ id: map['id'] ?? '',
+ name: map['name'] ?? '',
+ );
+ }
+
+ String toJson() => json.encode(toMap());
+
+ factory User.fromJson(String source) => User.fromMap(json.decode(source));
+
+ @override
+ String toString() => 'User(id: $id, name: $name)';
+
+ @override
+ bool operator ==(Object other) {
+ if (identical(this, other)) return true;
+
+ return other is User && other.id == id && other.name == name;
+ }
+
+ @override
+ int get hashCode => id.hashCode ^ name.hashCode;
+}