group<T> static method
Runs body with the output indented one extra level.
Implementation
static Future<T> group<T>(Future<T> Function() body) async {
indentLevel++;
try {
return await body();
} finally {
indentLevel--;
}
}