PlatformAlertDialog constructor

const PlatformAlertDialog({
  1. Key? key,
  2. required Text title,
  3. required Text content,
  4. required List<Widget> actions,
})

Implementation

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