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