copyWith method
AssetReportRefreshRequest
copyWith({
- String? clientId,
- String? secret,
- String? assetReportToken,
- int? daysRequested,
- AssetReportRefreshRequestOptions? options,
Implementation
AssetReportRefreshRequest copyWith(
{String? clientId,
String? secret,
String? assetReportToken,
int? daysRequested,
AssetReportRefreshRequestOptions? options}) {
return AssetReportRefreshRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
assetReportToken: assetReportToken ?? this.assetReportToken,
daysRequested: daysRequested ?? this.daysRequested,
options: options ?? this.options);
}