toStringDeep method
      
  
String
toStringDeep({ 
    
- String prefixLineOne = '',
- String? prefixOtherLines = '',
- DiagnosticLevel minLevel = DiagnosticLevel.debug,
- int wrapWidth = 65,
inherited
    Returns a description of the tree rooted at this node. If the prefix argument is provided, then every line in the output will be prefixed by that string.
Implementation
@override
String toStringDeep({
  String prefixLineOne = '',
  String? prefixOtherLines = '',
  DiagnosticLevel minLevel = DiagnosticLevel.debug,
  int wrapWidth = 65,
}) {
  return _withDebugActiveLayoutCleared(
    () => super.toStringDeep(
      prefixLineOne: prefixLineOne,
      prefixOtherLines: prefixOtherLines,
      minLevel: minLevel,
      wrapWidth: wrapWidth,
    ),
  );
}