copyWith method
Implementation
Notification copyWith({
int? id,
int? date,
bool? isSilent,
NotificationType? type,
}) =>
Notification(
id: id ?? this.id,
date: date ?? this.date,
isSilent: isSilent ?? this.isSilent,
type: type ?? this.type,
);