Notification constructor

Notification({
  1. String? isNotification,
  2. String? title,
  3. String? message,
  4. String? date,
})

Implementation

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