BaseTabsButton constructor

const BaseTabsButton({
  1. Key? key,
  2. IconData? icon,
  3. double width = 40,
  4. void onPressed()?,
  5. bool isDestructive = false,
})

Implementation

const BaseTabsButton({
  super.key,
  this.icon,
  this.width = 40,
  this.onPressed,
  this.isDestructive = false,
});