CustomDialog constructor

const CustomDialog({
  1. Key? key,
  2. Widget? title,
  3. Widget? content,
  4. CustomDialogStyle? style,
  5. List<Widget> actions = const [],
  6. bool scrollable = false,
})

Implementation

const CustomDialog({
  super.key,
  this.title,
  this.content,
  this.style,
  this.actions = const [],
  this.scrollable = false,
});