copyWithWrapped method

DexStatsResponse$Response copyWithWrapped({
  1. Wrapped<String>? since,
  2. Wrapped<DexStats>? stats,
  3. Wrapped<String>? until,
})

Implementation

DexStatsResponse$Response copyWithWrapped(
    {Wrapped<String>? since,
    Wrapped<DexStats>? stats,
    Wrapped<String>? until}) {
  return DexStatsResponse$Response(
      since: (since != null ? since.value : this.since),
      stats: (stats != null ? stats.value : this.stats),
      until: (until != null ? until.value : this.until));
}