GetPerformanceVwapReply constructor

GetPerformanceVwapReply({
  1. double? pVwap,
  2. CurrencyPair? pair,
})

Implementation

factory GetPerformanceVwapReply({
  $core.double? pVwap,
  CurrencyPair? pair,
}) {
  final $result = create();
  if (pVwap != null) {
    $result.pVwap = pVwap;
  }
  if (pair != null) {
    $result.pair = pair;
  }
  return $result;
}