copyWith method

AssetsProductReadyWebhook copyWith({
  1. String? webhookType,
  2. String? webhookCode,
  3. String? assetReportId,
})

Implementation

AssetsProductReadyWebhook copyWith(
    {String? webhookType, String? webhookCode, String? assetReportId}) {
  return AssetsProductReadyWebhook(
      webhookType: webhookType ?? this.webhookType,
      webhookCode: webhookCode ?? this.webhookCode,
      assetReportId: assetReportId ?? this.assetReportId);
}