CustomButton constructor

CustomButton({
  1. Key? key,
  2. required Function onPressed,
  3. Color? backgroundColor,
  4. required String title,
})

Implementation

CustomButton(
    {super.key,
    required this.onPressed,
    this.backgroundColor,
    required this.title});