copyWith method

RemoveNotificationGroup copyWith({
  1. int? notificationGroupId,
  2. int? maxNotificationId,
})

Implementation

RemoveNotificationGroup copyWith({
  int? notificationGroupId,
  int? maxNotificationId,
}) =>
    RemoveNotificationGroup(
      notificationGroupId: notificationGroupId ?? this.notificationGroupId,
      maxNotificationId: maxNotificationId ?? this.maxNotificationId,
    );