copyWith method

PoolStatsResponse$Response copyWith({
  1. String? since,
  2. List<PoolStats>? stats,
  3. int? uniqueWalletsCount,
  4. String? until,
})

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