copyWith method

MarketListResponse$Response copyWith({
  1. List<String>? pairs,
})

Implementation

MarketListResponse$Response copyWith({List<String>? pairs}) {
  return MarketListResponse$Response(pairs: pairs ?? this.pairs);
}