ButtonWidget constructor

const ButtonWidget({
  1. Key? key,
  2. required double height,
  3. double? width,
  4. double? radius,
  5. Widget? widget,
  6. String? title,
  7. required void onTap(),
  8. Color? borderColor,
  9. Color? bgColor,
  10. Color? textColor,
})

Implementation

const ButtonWidget(
    {super.key,
    required this.height,
    this.width,
    this.radius,
    this.widget,
    this.title,
    required this.onTap,
    this.borderColor,
    this.bgColor,
    this.textColor});