MainButton constructor

const MainButton({
  1. Key? key,
  2. required String title,
  3. required dynamic onTap(),
  4. double? height,
  5. double? width,
  6. Color? color,
  7. Color? titleColor,
})

Implementation

const MainButton({
  super.key,
  required this.title,
  required this.onTap,
  this.height,
  this.width,
  this.color,
  this.titleColor,
});