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