PrettyBorderButton constructor

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

Implementation

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