MarketDepthReply constructor

MarketDepthReply({
  1. MarketDepthInfo? marketDepth,
})

Implementation

factory MarketDepthReply({
  MarketDepthInfo? marketDepth,
}) {
  final $result = create();
  if (marketDepth != null) {
    $result.marketDepth = marketDepth;
  }
  return $result;
}