copyWith method

ItemImportRequestOptions copyWith({
  1. String? webhook,
})

Implementation

ItemImportRequestOptions copyWith({String? webhook}) {
  return ItemImportRequestOptions(webhook: webhook ?? this.webhook);
}