copyWith method
Implementation
UpdateHavePendingNotifications copyWith({
bool? haveDelayedNotifications,
bool? haveUnreceivedNotifications,
}) => UpdateHavePendingNotifications(
haveDelayedNotifications:
haveDelayedNotifications ?? this.haveDelayedNotifications,
haveUnreceivedNotifications:
haveUnreceivedNotifications ?? this.haveUnreceivedNotifications,
);