ConditionalExpression constructor

ConditionalExpression(
  1. Expression condition,
  2. Expression then,
  3. Expression otherwise
)

Implementation

ConditionalExpression(this.condition, this.then, this.otherwise);