fromMap static method
Implementation
static NotificationEvent fromMap(Map data) {
NotificationEvent notificationEvent = NotificationEvent();
notificationEvent.id = data['id'] ?? '';
notificationEvent.description = data['description'] ?? '';
notificationEvent.title = data["title"] ?? '';
return notificationEvent;
}