SExpandableHandles constructor

const SExpandableHandles({
  1. Key? key,
  2. required VoidCallback onTap,
  3. required double width,
  4. required double height,
  5. required Color iconColor,
  6. bool isExpanded = false,
  7. bool? expandsRight,
  8. bool? expandsDown,
  9. bool? shoulAutodReverseHamburgerAnimationWhenComplete,
  10. dynamic onHamburgerStateAnimationCompleted(
    1. bool? state
    )?,
  11. bool? triggerOnTap,
})

Implementation

const SExpandableHandles({
  super.key,
  required this.onTap,
  required this.width,
  required this.height,
  required this.iconColor,
  this.isExpanded = false,
  this.expandsRight,
  this.expandsDown,
  this.shoulAutodReverseHamburgerAnimationWhenComplete,
  this.onHamburgerStateAnimationCompleted,
  this.triggerOnTap,
});