PushNotification constructor

PushNotification({
  1. int? id,
  2. String? title,
  3. String? message,
  4. NotificationActionEnum? notificationAction,
  5. int? bookingId,
  6. DateTime? bookingStartTime,
  7. bool? isRead,
  8. DateTime? created,
})

Returns a new PushNotification instance.

Implementation

PushNotification({
  this.id,
  this.title,
  this.message,
  this.notificationAction,
  this.bookingId,
  this.bookingStartTime,
  this.isRead,
  this.created,
});