$shortIf static method

Tag $shortIf(
  1. String condition,
  2. String then, [
  3. String otherwise = ''
])

Implementation

static Tag $shortIf(String condition, String then, [String otherwise = '']) {
  return $JinjaVar(
      '$then if $condition ${otherwise.isEmpty ? '' : 'else $otherwise'}');
}