copyWith method
AssetReportPDFGetRequest
copyWith({
- String? clientId,
- String? secret,
- String? assetReportToken,
- AssetReportPDFGetRequestOptions? options,
Implementation
AssetReportPDFGetRequest copyWith(
{String? clientId,
String? secret,
String? assetReportToken,
AssetReportPDFGetRequestOptions? options}) {
return AssetReportPDFGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
assetReportToken: assetReportToken ?? this.assetReportToken,
options: options ?? this.options);
}