describeWidget method
      
  
DiagnosticsNode
describeWidget(
    
- String name, {
- DiagnosticsTreeStyle style = DiagnosticsTreeStyle.errorProperty,
inherited
    Returns a description of the Widget associated with the current build context.
The name is typically something like "The widget being rebuilt was".
Implementation
@override
DiagnosticsNode describeWidget(
  String name, {
  DiagnosticsTreeStyle style = DiagnosticsTreeStyle.errorProperty,
}) {
  return DiagnosticsProperty<Element>(name, this, style: style);
}