copyWithWrapped method

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

Implementation

MarketListResponse$Response copyWithWrapped({Wrapped<List<String>>? pairs}) {
  return MarketListResponse$Response(
      pairs: (pairs != null ? pairs.value : this.pairs));
}