copyWith method
Implementation
@override
UpdateHavePendingNotifications copyWith({
bool? haveDelayedNotifications,
bool? haveUnreceivedNotifications,
dynamic extra,
int? clientId,
}) => UpdateHavePendingNotifications(
haveDelayedNotifications: haveDelayedNotifications ?? this.haveDelayedNotifications,
haveUnreceivedNotifications: haveUnreceivedNotifications ?? this.haveUnreceivedNotifications,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);