IfBlock constructor

IfBlock(
  1. CodeUnit ifCondition,
  2. InjectCodeUnit ifContent, {
  3. int depth = 0,
  4. InjectCodeUnit? elseContent,
})

Implementation

IfBlock(this.ifCondition, this.ifContent, {int depth = 0, this.elseContent})
    : super(depth);