copyWith method
Implementation
AssetReportAuditCopyRemoveRequest copyWith(
{String? clientId, String? secret, String? auditCopyToken}) {
return AssetReportAuditCopyRemoveRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
auditCopyToken: auditCopyToken ?? this.auditCopyToken);
}