Expr_Select constructor
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;
}