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