CustomButton constructor

const CustomButton({
  1. required String title,
  2. required dynamic onPressed(
    1. bool
    ),
  3. Key? key,
})

Implementation

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