copyWith method

ContainerForWebhookIDs copyWith({
  1. List<int>? webhookIds,
})

Implementation

ContainerForWebhookIDs copyWith({List<int>? webhookIds}) {
  return ContainerForWebhookIDs(
    webhookIds: webhookIds ?? this.webhookIds,
  );
}