SleekOutlinedButton constructor

const SleekOutlinedButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onTap,
  4. double? width,
  5. Color? borderColor,
  6. Color? textColor,
})

Implementation

const SleekOutlinedButton({
  super.key,
  required this.text,
  required this.onTap,
  this.width,
  this.borderColor,
  this.textColor,
});