TitleBarNodeWidget constructor

TitleBarNodeWidget({
  1. required Widget icon,
  2. required Widget title,
  3. double width = 150,
  4. Color? titleBarColor,
  5. Color? backgroundColor,
  6. List<BoxShadow>? boxShadow,
  7. double? radius,
  8. BoxBorder? border,
  9. BoxBorder? selectedBorder,
  10. Gradient? gradient,
  11. BlendMode? backgroundBlendMode,
  12. DecorationImage? image,
  13. BoxBorder? titleBarBorder,
  14. Gradient? titleBarGradient,
  15. BlendMode? titleBarBackgroundBlendMode,
  16. DecorationImage? titleBarImage,
  17. double? iconTileSpacing,
  18. EdgeInsetsGeometry? titleBarPadding,
  19. EdgeInsetsGeometry? contentPadding,
  20. required String name,
  21. required String typeName,
  22. required Widget child,
})

Implementation

TitleBarNodeWidget(
    {required this.icon,
    required this.title,
    super.width = 150,
    this.titleBarColor,
    this.backgroundColor,
    this.boxShadow,
    this.radius,
    this.border,
    this.selectedBorder,
    this.gradient,
    this.backgroundBlendMode,
    this.image,
    this.titleBarBorder,
    this.titleBarGradient,
    this.titleBarBackgroundBlendMode,
    this.titleBarImage,
    this.iconTileSpacing,
    this.titleBarPadding,
    this.contentPadding,
    required super.name,
    required super.typeName,
    required this.child});