copyWith method

ItemWebhookUpdateResponse copyWith({
  1. Item? item,
  2. String? requestId,
})

Implementation

ItemWebhookUpdateResponse copyWith({Item? item, String? requestId}) {
  return ItemWebhookUpdateResponse(
      item: item ?? this.item, requestId: requestId ?? this.requestId);
}