NsgSlidableItemButton constructor

const NsgSlidableItemButton({
  1. Key? key,
  2. required IconData icon,
  3. double widht = 40,
  4. Color? buttonColor,
  5. Color? iconColor,
  6. void onTap()?,
})

Implementation

const NsgSlidableItemButton({
  super.key,
  required this.icon,
  this.widht = 40,
  this.buttonColor,
  this.iconColor,
  this.onTap,
});