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