EsigTabOptionWidget constructor

const EsigTabOptionWidget({
  1. Key? key,
  2. IconData? icon,
  3. Text? texto,
  4. String? label,
  5. Color color = Colors.grey,
  6. void onTap()?,
  7. double iconSize = 25,
  8. double labelSize = 12,
  9. int badgeCount = 0,
})

Implementation

const EsigTabOptionWidget({
  Key? key,
  this.icon,
  this.texto,
  this.label,
  this.color = Colors.grey,
  this.onTap,
  this.iconSize = 25,
  this.labelSize = 12,
  this.badgeCount = 0,
}) : super(key: key);