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