GetBlockEndState constructor

GetBlockEndState({
  1. required String blockName,
})

Implementation

GetBlockEndState({required this.blockName}) {
  methods = {
    'process': (msg, context) => process(msg, context),
  };

  var _o = String.fromCharCode(openBracket);
  var _c = String.fromCharCode(closeBracket);
  var _s = String.fromCharCode(slash);
  var _h = String.fromCharCode(sharp);

  _look = '$_o$_o$_s$blockName$_c$_c'; // {{/<name>}}
  _openTag = '$_o$_o$_h$blockName';
}