Button constructor
const
Button({
- Key? key,
- required VoidCallback? onPressed,
- required String title,
- ButtonStyle? style,
Implementation
const Button({
Key? key,
required this.onPressed,
required this.title,
this.style,
}) : super(key: key);