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