getGroup method

NodeLayout? getGroup(
  1. List<LatexNode> nodes,
  2. RenderContext context
)

Queries the node group cache.

Implementation

NodeLayout? getGroup(List<LatexNode> nodes, RenderContext context) {
  final key = _GroupCacheKey(nodes, _normalizeContext(context));
  return _groupCache.get(key);
}