TolyAction constructor

const TolyAction({
  1. Key? key,
  2. required Widget child,
  3. bool selected = false,
  4. String? tooltip,
  5. ActionStyle? style,
  6. Placement toolTipPlacement = Placement.bottom,
  7. required VoidCallback? onTap,
})

Implementation

const TolyAction({
  super.key,
  required this.child,
  this.selected = false,
  this.tooltip,
  this.style,
  this.toolTipPlacement = Placement.bottom,
  required this.onTap,
});