Expr_Select constructor

Expr_Select({
  1. Expr? operand,
  2. String? field_2,
  3. bool? testOnly,
})

Implementation

factory Expr_Select({
  Expr? operand,
  $core.String? field_2,
  $core.bool? testOnly,
}) {
  final result = create();
  if (operand != null) result.operand = operand;
  if (field_2 != null) result.field_2 = field_2;
  if (testOnly != null) result.testOnly = testOnly;
  return result;
}