factory Notification.fromJson(Map<String, dynamic> json) { return Notification( title: json['title'] as String, body: json['body'] as String, ); }