InspectorSerializationDelegate constructor

InspectorSerializationDelegate(
  1. {String? groupName,
  2. bool summaryTree = false,
  3. int maxDescendantsTruncatableNode = -1,
  4. bool expandPropertyValues = true,
  5. int subtreeDepth = 1,
  6. bool includeProperties = false,
  7. required WidgetInspectorService service,
  8. Map<String, Object>? addAdditionalPropertiesCallback(
    1. DiagnosticsNode,
    2. InspectorSerializationDelegate
    )?}
)

Creates an InspectorSerializationDelegate that serialize DiagnosticsNode for Flutter Inspector service.

Implementation

InspectorSerializationDelegate({
  this.groupName,
  this.summaryTree = false,
  this.maxDescendantsTruncatableNode = -1,
  this.expandPropertyValues = true,
  this.subtreeDepth = 1,
  this.includeProperties = false,
  required this.service,
  this.addAdditionalPropertiesCallback,
});