NodeFlowMinimap<T> constructor

const NodeFlowMinimap<T>({
  1. Key? key,
  2. required NodeFlowController<T> controller,
  3. Size size = const Size(200, 150),
  4. Color? backgroundColor,
  5. Color? nodeColor,
  6. Color? viewportColor,
  7. double borderRadius = 4.0,
  8. EdgeInsets padding = const EdgeInsets.all(4.0),
  9. bool showViewport = true,
  10. bool interactive = true,
})

Implementation

const NodeFlowMinimap({
  super.key,
  required this.controller,
  this.size = const Size(200, 150),
  this.backgroundColor,
  this.nodeColor,
  this.viewportColor,
  this.borderRadius = 4.0,
  this.padding = const EdgeInsets.all(4.0),
  this.showViewport = true,
  this.interactive = true,
});