GradientElevatedTextButton constructor

const GradientElevatedTextButton({
  1. Key? key,
  2. required String title,
  3. required Future<void> onTap(),
  4. TextStyle? style,
  5. GeneralButtonType? generalButtonType,
  6. BorderRadius? borderRadius,
  7. Border? border,
  8. double? width,
  9. double? height,
})

Implementation

const GradientElevatedTextButton({
  super.key,
  required this.title,
  required this.onTap,
  this.style,
  this.generalButtonType,
  this.borderRadius,
  this.border,
  this.width,
  this.height,
});