MarketPricesReply constructor

MarketPricesReply({
  1. Iterable<MarketPriceInfo>? marketPrice,
})

Implementation

factory MarketPricesReply({
  $core.Iterable<MarketPriceInfo>? marketPrice,
}) {
  final $result = create();
  if (marketPrice != null) {
    $result.marketPrice.addAll(marketPrice);
  }
  return $result;
}