copyWith method

RemoveNotification copyWith({
  1. int? notificationGroupId,
  2. int? notificationId,
})

Implementation

RemoveNotification copyWith({
  int? notificationGroupId,
  int? notificationId,
}) =>
    RemoveNotification(
      notificationGroupId: notificationGroupId ?? this.notificationGroupId,
      notificationId: notificationId ?? this.notificationId,
    );