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