GraphNodeViewBehavior constructor

const GraphNodeViewBehavior({
  1. required GraphNodeWidgetBuilder builder,
  2. GraphTooltipBehavior? tooltipBehavior,
  3. Widget? child,
})

Creates a node view behavior with the specified configuration.

Implementation

const GraphNodeViewBehavior({
  required this.builder,
  this.tooltipBehavior,
  this.child,
});