DiagnosticableNode<T extends Diagnosticable> constructor
Null safety
- {String? name,
- required T value,
- required DiagnosticsTreeStyle? style}
Create a diagnostics describing a Diagnosticable value.
The value argument must not be null.
Implementation
DiagnosticableNode({
super.name,
required this.value,
required super.style,
}) : assert(value != null);