copyWithWrapped method

ItemImportRequestOptions copyWithWrapped({
  1. Wrapped<String?>? webhook,
})

Implementation

ItemImportRequestOptions copyWithWrapped({Wrapped<String?>? webhook}) {
  return ItemImportRequestOptions(
      webhook: (webhook != null ? webhook.value : this.webhook));
}