copyWith method

AssetReportCreateRequestOptions copyWith({
  1. String? clientReportId,
  2. String? webhook,
  3. bool? includeFastReport,
  4. List<String>? products,
  5. AssetReportUser? user,
})

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);
}