startGroup function

void startGroup({
  1. required String name,
})

Begin an output group.

Output until the next endGroup will be foldable in this group.

Implementation

void startGroup({required String name}) {
  issue('group', name);
}