copyWith method
Implementation
AssetReportCreateRequestOptions copyWith(
{String? clientReportId,
String? webhook,
bool? includeFastReport,
List<String>? products,
AssetReportUser? user}) {
return AssetReportCreateRequestOptions(
clientReportId: clientReportId ?? this.clientReportId,
webhook: webhook ?? this.webhook,
includeFastReport: includeFastReport ?? this.includeFastReport,
products: products ?? this.products,
user: user ?? this.user);
}