ParentNodeTheme<T> constructor

const ParentNodeTheme<T>({
  1. Widget? widget,
  2. Widget? widgetResolver(
    1. Node<T> node
    )?,
  3. Widget? openWidget,
  4. Widget? openWidgetResolver(
    1. Node<T> node
    )?,
  5. double width = 20.0,
  6. double height = 20.0,
  7. EdgeInsets padding = EdgeInsets.zero,
  8. EdgeInsets margin = EdgeInsets.zero,
  9. TextStyle? textStyle,
  10. TextStyle? textStyleResolver(
    1. Node<T> node
    )?,
  11. String? labelResolver(
    1. Node<T> node
    )?,
  12. Color? hoverColor,
  13. Color? splashColor,
  14. Color? highlightColor,
  15. NodeTooltipTheme<T>? tooltipTheme,
})

Creates a ParentNodeTheme

Implementation

const ParentNodeTheme({
  this.widget,
  this.widgetResolver,
  this.openWidget,
  this.openWidgetResolver,
  this.width = 20.0,
  this.height = 20.0,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
  this.textStyle,
  this.textStyleResolver,
  this.labelResolver,
  this.hoverColor,
  this.splashColor,
  this.highlightColor,
  this.tooltipTheme,
});