NotificationDialog constructor

const NotificationDialog({
  1. Key? key,
  2. required String data,
  3. double width = 350,
  4. double height = 500,
  5. int maxTitleChars = 49,
})

Implementation

const NotificationDialog(
    {Key? key,
    required this.data,
    this.width = 350,
    this.height = 500,
    this.maxTitleChars = 49})
    : super(key: key);