VentButton constructor

VentButton({
  1. Key? key,
  2. dynamic onTap()?,
  3. VentButtonStyle? buttonStyle,
  4. required String? buttonText,
})

Implementation

VentButton({
  super.key,
  this.onTap,
  this.buttonStyle,
  required this.buttonText,
});