push method

void push(
  1. Tag tag, [
  2. int? line
])

Implementation

void push(Tag tag, [int? line]) {
  _tagCtxs.add(_current =
    _TagContext.child(_current, tag, line != null ? line: _line));
}