Button constructor

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

Implementation

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