VentasPrimaryButton constructor

const VentasPrimaryButton({
  1. Key? key,
  2. required VoidCallback? onTap,
  3. required String label,
  4. double? btnHeight,
  5. double? btnWidth,
  6. double? borderRadius,
  7. Color? textColor,
  8. Color? bgColor,
  9. Color? borderColor,
})

Implementation

const VentasPrimaryButton(
    {super.key,
    required this.onTap,
    required this.label,
    this.btnHeight,
    this.btnWidth,
    this.borderRadius,
    this.textColor,
    this.bgColor,
    this.borderColor});