copyWith method
AssetReportRefreshRequestOptions
copyWith({
- String? clientReportId,
- String? webhook,
- AssetReportUser? user,
Implementation
AssetReportRefreshRequestOptions copyWith(
{String? clientReportId, String? webhook, AssetReportUser? user}) {
return AssetReportRefreshRequestOptions(
clientReportId: clientReportId ?? this.clientReportId,
webhook: webhook ?? this.webhook,
user: user ?? this.user);
}