isAnyMacroEnd method

bool isAnyMacroEnd()

Implementation

bool isAnyMacroEnd() {
  var line = trim().toLowerCase();
  return line.startsWith('<!-- // end of #') && line.endsWith('-->');
}