LuauConditionalExpression constructor

LuauConditionalExpression({
  1. required LuauNode condition,
  2. required LuauNode thenExpression,
  3. required LuauNode elseExpression,
})

Implementation

LuauConditionalExpression({
  required this.condition,
  required this.thenExpression,
  required this.elseExpression,
});