Notification constructor
Notification({})
Implementation
Notification({
String? isNotification,
String? title,
String? message,
String? date,
String? time,}){
_isNotification = isNotification;
_title = title;
_message = message;
_date = date;
_time = time;
}