DSI_BOTTOM_NAV_BUTTON constructor

DSI_BOTTOM_NAV_BUTTON({
  1. Key? key,
  2. required dynamic icon,
  3. required Function onPressed,
  4. dynamic label,
  5. dynamic textStyle,
  6. dynamic iconSize,
  7. dynamic activeColor,
  8. dynamic defaultColor,
  9. dynamic isActive,
})

Implementation

DSI_BOTTOM_NAV_BUTTON({
  super.key,
  required this.icon,
  required this.onPressed,
  this.label,
  this.textStyle,
  this.iconSize,
  this.activeColor,
  this.defaultColor,
  this.isActive,
});