toStringShallow method

  1. @override
String toStringShallow(
  1. {String joiner = ', ',
  2. DiagnosticLevel minLevel = DiagnosticLevel.debug}
)
override

Returns a one-line detailed description of the render object. This description is often somewhat long.

This includes the same information for this RenderObject as given by toStringDeep, but does not recurse to any children.

Implementation

@override
String toStringShallow({
  String joiner = ', ',
  DiagnosticLevel minLevel = DiagnosticLevel.debug,
}) {
  return _withDebugActiveLayoutCleared(() => super.toStringShallow(joiner: joiner, minLevel: minLevel));
}