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