MobiKulBorderButton constructor

const MobiKulBorderButton({
  1. Key? key,
  2. double borderWidth = 1,
  3. Color borderColor = Colors.blueGrey,
  4. required String text,
  5. Color backgroundColor = Colors.white,
  6. TextStyle? textStyle,
  7. required VoidCallback onPressed,
})

Implementation

const MobiKulBorderButton({
  super.key,
  this.borderWidth = 1,
  this.borderColor = Colors.blueGrey,
  required this.text,
  this.backgroundColor = Colors.white,
  this.textStyle,
  required this.onPressed,
});