RawQuery_RawContextPair constructor

RawQuery_RawContextPair({
  1. RawVector? positive,
  2. RawVector? negative,
})

Implementation

factory RawQuery_RawContextPair({
  RawVector? positive,
  RawVector? negative,
}) {
  final $result = create();
  if (positive != null) {
    $result.positive = positive;
  }
  if (negative != null) {
    $result.negative = negative;
  }
  return $result;
}