DiagnosticsNode class Null safety
Defines diagnostics data for a value.
For debug and profile modes, DiagnosticsNode provides a high quality multiline string dump via toStringDeep. The core members are the name, toDescription, getProperties, value, and getChildren. All other members exist typically to provide hints for how toStringDeep and debugging tools should format output.
In release mode, far less information is retained and some information may not print at all.
- Implementers
Constructors
- DiagnosticsNode({required String? name, DiagnosticsTreeStyle? style, bool showName = true, bool showSeparator = true, String? linePrefix})
- Initializes the object.
- DiagnosticsNode.message(String message, {DiagnosticsTreeStyle style = DiagnosticsTreeStyle.singleLine, DiagnosticLevel level = DiagnosticLevel.info, bool allowWrap = true})
-
Diagnostics containing just a string
message
and not a concrete name or value.factory
Properties
- allowNameWrap → bool
-
Whether to wrap the name onto multiple lines or not.
read-only
- allowTruncate → bool
-
Whether to allow truncation when displaying the node and its children.
read-only
- allowWrap → bool
-
Whether to wrap text on onto multiple lines or not.
read-only
- emptyBodyDescription → String?
-
Description to show if the node has no displayed properties or children.
read-only
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- level → DiagnosticLevel
-
Priority level of the diagnostic used to control which diagnostics should
be shown and filtered.
read-only
- linePrefix → String?
-
Prefix to include at the start of each line.
final
- name → String?
-
Label describing the DiagnosticsNode, typically shown before a separator
(see showSeparator).
final
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- showName → bool
-
Whether the name of the property should be shown when showing the default
view of the tree.
final
- showSeparator → bool
-
Whether to show a separator between name and description.
final
- style → DiagnosticsTreeStyle?
-
Hint for how the node should be displayed.
final
- textTreeConfiguration → TextTreeConfiguration?
-
Returns a configuration specifying how this object should be rendered
as text art.
protected">@protectedread-only
- value → Object?
-
The actual object this is diagnostics data for.
read-only
Methods
-
getChildren(
) → List< DiagnosticsNode> -
Children of this
DiagnosticsNode
. -
getProperties(
) → List< DiagnosticsNode> -
Properties of this
DiagnosticsNode
. -
isFiltered(
DiagnosticLevel minLevel) → bool -
Whether the diagnostic should be filtered due to its level being lower
than
minLevel
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toDescription(
{TextTreeConfiguration? parentConfiguration}) → String - Returns a description with a short summary of the node itself not including children or properties.
-
toJsonMap(
DiagnosticsSerializationDelegate delegate) → Map< String, Object?> -
Serialize the node to a JSON map according to the configuration provided
in the DiagnosticsSerializationDelegate.
mustCallSuper">@mustCallSuper
-
toString(
{TextTreeConfiguration? parentConfiguration, DiagnosticLevel minLevel = DiagnosticLevel.info}) → String -
Returns a string representation of this diagnostic that is compatible with
the style of the parent if the node is not the root.
override
-
toStringDeep(
{String prefixLineOne = '', String? prefixOtherLines, TextTreeConfiguration? parentConfiguration, DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String - Returns a string representation of this node and its descendants.
-
toTimelineArguments(
) → Map< String, String> ? - Converts the properties (getProperties) of this node to a form useful for Timeline event arguments (as in Timeline.startSync).
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
toJsonList(
List< DiagnosticsNode> ? nodes, DiagnosticsNode? parent, DiagnosticsSerializationDelegate delegate) → List<Map< String, Object?> > - Serializes a List of DiagnosticsNodes to a JSON list according to the configuration provided by the DiagnosticsSerializationDelegate.