NotificationsItems constructor

NotificationsItems({
  1. String? notificationId,
  2. String? idRedirect,
  3. String? contentType,
  4. String? title,
  5. String? message,
  6. String? image,
  7. String? deviceType,
  8. CreatedAtDateTime? createdAtDateTime,
})

Implementation

NotificationsItems({
    String? notificationId,
    String? idRedirect,
    String? contentType,
    String? title,
    String? message,
    String? image,
    String? deviceType,
    CreatedAtDateTime? createdAtDateTime,}){
  _notificationId = notificationId;
  _idRedirect = idRedirect;
  _contentType = contentType;
  _title = title;
  _message = message;
  _image = image;
  _deviceType = deviceType;
  _createdAtDateTime = createdAtDateTime;
}