getChildrenDetailsSubtree method

String getChildrenDetailsSubtree(
  1. String diagnosticableId,
  2. String groupName
)

Returns a JSON representation of the children of the DiagnosticsNode object that diagnosticableId references providing information needed for the details subtree view.

The details subtree shows properties inline and includes all children rather than a filtered set of important children.

Implementation

String getChildrenDetailsSubtree(String diagnosticableId, String groupName) {
  return _safeJsonEncode(_getChildrenDetailsSubtree(diagnosticableId, groupName));
}