GetPerformanceVwapReply constructor
GetPerformanceVwapReply({
- double? pVwap,
- 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;
}