copyWithWrapped method

AssetReportRefreshRequestOptions copyWithWrapped({
  1. Wrapped<String?>? clientReportId,
  2. Wrapped<String?>? webhook,
  3. Wrapped<AssetReportUser?>? user,
})

Implementation

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