UnderlinedButton constructor

const UnderlinedButton({
  1. Key? key,
  2. required String title,
  3. required VoidCallback onPressed,
  4. TextStyle? style,
})

Implementation

const UnderlinedButton({
  super.key,
  required this.title,
  required this.onPressed,
  this.style,
});