conditional method
Expression
conditional(
- Expression whenTrue,
- Expression whenFalse
inherited
Implementation
Expression conditional(Expression whenTrue, Expression whenFalse) =>
BinaryExpression._(
expression,
BinaryExpression._(whenTrue, whenFalse, ':'),
'?',
);