CustomButton constructor

const CustomButton({
  1. required String text,
  2. required VoidCallback onPressed,
  3. Key? key,
})

Implementation

const CustomButton({
  required this.text,
  required this.onPressed,
  Key? key,
}) : super(key: key);