Airoll constructor

const Airoll({
  1. Key? key,
  2. required Widget child,
  3. required List<TabItem>? children,
  4. bool isParent = true,
  5. bool actOnHover = true,
  6. bool isFloating = true,
  7. Clip clipBehavior = Clip.none,
  8. EdgeInsetsGeometry? padding,
  9. Color? color,
  10. BoxConstraints? constraints,
  11. double? elevation,
  12. bool? enableFeedback,
  13. bool enabled = true,
  14. Widget? icon,
  15. double? iconSize,
  16. TabItem? initialValue,
  17. void onCanceled()?,
  18. void onOpened()?,
  19. PopupMenuPosition? position,
  20. Color? shadowColor,
  21. ShapeBorder? shape,
  22. double? splashRadius,
  23. Color? surfaceTintColor,
  24. String? tooltip,
  25. bool showLeading = false,
  26. bool showTrailing = false,
})

Implementation

const Airoll({
  Key? key,
  required this.child,
  required this.children,
  this.isParent = true,
  this.actOnHover = true,
  this.isFloating = true,
  this.clipBehavior = Clip.none,
  this.padding,
  this.color,
  this.constraints,
  this.elevation,
  this.enableFeedback,
  this.enabled = true,
  this.icon,
  this.iconSize,
  this.initialValue,
  this.onCanceled,
  this.onOpened,
  this.position,
  this.shadowColor,
  this.shape,
  this.splashRadius,
  this.surfaceTintColor,
  this.tooltip,
  this.showLeading = false,
  this.showTrailing = false,
}) : super(key: key);