copyWith method

DexStatsResponse$Response copyWith({
  1. String? since,
  2. DexStats? stats,
  3. String? until,
})

Implementation

DexStatsResponse$Response copyWith(
    {String? since, DexStats? stats, String? until}) {
  return DexStatsResponse$Response(
      since: since ?? this.since,
      stats: stats ?? this.stats,
      until: until ?? this.until);
}