TDSideBarItem constructor

const TDSideBarItem({
  1. Key? key,
  2. TDBadge? badge,
  3. bool disabled = false,
  4. IconData? icon,
  5. TextStyle? textStyle,
  6. String label = '',
  7. int value = -1,
})

Implementation

const TDSideBarItem({
  Key? key,
  this.badge,
  this.disabled = false,
  this.icon,
  this.textStyle,
  this.label = '',
  this.value = -1,
}) : super(key: key);