ExprIfThenElse constructor

const ExprIfThenElse({
  1. required Expr cond,
  2. required Expr then,
  3. required Expr otherwise,
})

Implementation

const ExprIfThenElse({
  required this.cond,
  required this.then,
  required this.otherwise,
});