Button constructor

const Button({
  1. Key? key,
  2. required void confirmProcess(),
  3. required BuildContext speechContext,
  4. required String text,
})

Implementation

const Button(
    {super.key,
    required this.confirmProcess,
    required this.speechContext,
    required this.text});