OutlinedBtn constructor

const OutlinedBtn({
  1. Key? key,
  2. required String title,
  3. required VoidCallback onTap,
  4. Color borderColor = Colors.blue,
  5. Color textColor = Colors.blue,
  6. double radius = 25,
  7. double height = 48,
  8. Widget? prefixIcon,
  9. double? textSize,
})

Implementation

const OutlinedBtn({
  super.key,
  required this.title,
  required this.onTap,
  this.borderColor = Colors.blue,
  this.textColor = Colors.blue,
  this.radius = 25,
  this.height = 48,
  this.prefixIcon,
  this.textSize
});