GetPerformanceVwapRequest constructor

GetPerformanceVwapRequest({
  1. String? fromDate,
  2. String? toDate,
  3. String? lpId,
  4. CurrencyPair? pair,
})

Implementation

factory GetPerformanceVwapRequest({
  $core.String? fromDate,
  $core.String? toDate,
  $core.String? lpId,
  CurrencyPair? pair,
}) {
  final $result = create();
  if (fromDate != null) {
    $result.fromDate = fromDate;
  }
  if (toDate != null) {
    $result.toDate = toDate;
  }
  if (lpId != null) {
    $result.lpId = lpId;
  }
  if (pair != null) {
    $result.pair = pair;
  }
  return $result;
}