copyWithWrapped method

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

Implementation

AssetReportCreateRequestOptions copyWithWrapped(
    {Wrapped<String?>? clientReportId,
    Wrapped<String?>? webhook,
    Wrapped<bool?>? includeFastReport,
    Wrapped<List<String>?>? products,
    Wrapped<AssetReportUser?>? user}) {
  return AssetReportCreateRequestOptions(
      clientReportId: (clientReportId != null
          ? clientReportId.value
          : this.clientReportId),
      webhook: (webhook != null ? webhook.value : this.webhook),
      includeFastReport: (includeFastReport != null
          ? includeFastReport.value
          : this.includeFastReport),
      products: (products != null ? products.value : this.products),
      user: (user != null ? user.value : this.user));
}