copyWith method
Implementation
PoolStatsResponse$Response copyWith(
{String? since,
List<PoolStats>? stats,
int? uniqueWalletsCount,
String? until}) {
return PoolStatsResponse$Response(
since: since ?? this.since,
stats: stats ?? this.stats,
uniqueWalletsCount: uniqueWalletsCount ?? this.uniqueWalletsCount,
until: until ?? this.until);
}