MySimpleAlertBox constructor

const MySimpleAlertBox({
  1. Key? key,
  2. required String title,
  3. required List<String> bodyLines,
  4. required List<Widget> actions,
})

Implementation

const MySimpleAlertBox({
  Key? key,
  required this.title,
  required this.bodyLines,
  required this.actions,
}) : super(key: key);