copyWith method
Implementation
AssetReportGetRequest copyWith(
{String? clientId,
String? secret,
String? assetReportToken,
bool? includeInsights,
bool? fastReport,
AssetReportGetRequestOptions? options}) {
return AssetReportGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
assetReportToken: assetReportToken ?? this.assetReportToken,
includeInsights: includeInsights ?? this.includeInsights,
fastReport: fastReport ?? this.fastReport,
options: options ?? this.options);
}