PrettySlideUnderlineButton constructor

const PrettySlideUnderlineButton({
  1. Key? key,
  2. required String label,
  3. TextStyle? labelStyle,
  4. Icon? icon,
  5. required VoidCallback onPressed,
  6. Duration? duration,
  7. Color? firstSlideColor,
  8. Color? secondSlideColor,
  9. double? underlineHeight,
})

Implementation

const PrettySlideUnderlineButton({
  super.key,
  required this.label,
  this.labelStyle,
  this.icon,
  required this.onPressed,
  this.duration,
  this.firstSlideColor,
  this.secondSlideColor,
  this.underlineHeight,
});