copyWith method

  1. @override
UpdateHavePendingNotifications copyWith({
  1. bool? haveDelayedNotifications,
  2. bool? haveUnreceivedNotifications,
  3. dynamic extra,
  4. int? clientId,
})
override

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,
);