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