copyWith method
Implementation
AssetReportCreateRequest copyWith(
{String? clientId,
String? secret,
List<String>? accessTokens,
int? daysRequested,
AssetReportCreateRequestOptions? options}) {
return AssetReportCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessTokens: accessTokens ?? this.accessTokens,
daysRequested: daysRequested ?? this.daysRequested,
options: options ?? this.options);
}