copyWith method
Implementation
AssetReportAuditCopyCreateRequest copyWith(
{String? clientId,
String? secret,
String? assetReportToken,
String? auditorId}) {
return AssetReportAuditCopyCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
assetReportToken: assetReportToken ?? this.assetReportToken,
auditorId: auditorId ?? this.auditorId);
}