ElseIf.s constructor Null safety
- Logic condition,
- Conditional then
If condition
is 1, then then
will be executed.
Use this constructor when you only have a single then
condition.
Implementation
ElseIf.s(Logic condition, Conditional then) : this(condition, [then]);