PrettyBarButton constructor

const PrettyBarButton({
  1. Key? key,
  2. double borderWidth = s1,
  3. Color borderColor = Colors.teal,
  4. Color bgColor = kTransparent,
  5. required VoidCallback onPressed,
  6. required String label,
  7. TextStyle? labelStyle,
})

Implementation

const PrettyBarButton({
  super.key,
  this.borderWidth = s1,
  this.borderColor = Colors.teal,
  this.bgColor = kTransparent,
  required this.onPressed,
  required this.label,
  this.labelStyle,
});