copyWith method

ContainerForRegisteredWebhooks copyWith({
  1. List<RegisteredWebhook>? webhookRegistrationResult,
})

Implementation

ContainerForRegisteredWebhooks copyWith(
    {List<RegisteredWebhook>? webhookRegistrationResult}) {
  return ContainerForRegisteredWebhooks(
    webhookRegistrationResult:
        webhookRegistrationResult ?? this.webhookRegistrationResult,
  );
}