TitleAndButton constructor

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

Implementation

const TitleAndButton(
    {Key? key,
    required this.title,
    required this.onPressed,
    required this.action})
    : super(key: key);