copyWithWrapped method
Implementation
PoolStatsResponse$Response copyWithWrapped(
{Wrapped<String>? since,
Wrapped<List<PoolStats>>? stats,
Wrapped<int>? uniqueWalletsCount,
Wrapped<String>? until}) {
return PoolStatsResponse$Response(
since: (since != null ? since.value : this.since),
stats: (stats != null ? stats.value : this.stats),
uniqueWalletsCount: (uniqueWalletsCount != null
? uniqueWalletsCount.value
: this.uniqueWalletsCount),
until: (until != null ? until.value : this.until));
}