DiagnosticableNode<T extends Diagnosticable> constructor

DiagnosticableNode<T extends Diagnosticable>(
  1. {String? name,
  2. required T value,
  3. required DiagnosticsTreeStyle? style}
)

Create a diagnostics describing a Diagnosticable value.

Implementation

DiagnosticableNode({
  super.name,
  required this.value,
  required super.style,
});