ADialog constructor

const ADialog({
  1. Key? key,
  2. required String title,
  3. List<Widget>? content,
  4. List<Widget>? titleActions,
  5. bool persistent = false,
  6. bool useInternalScroll = false,
  7. double padding = 20,
  8. double width = 400,
  9. double? height,
})

Implementation

const ADialog({
  super.key,
  required this.title,
  this.content,
  this.titleActions,
  this.persistent = false,
  this.useInternalScroll = false,
  this.padding = 20,
  this.width = 400,
  this.height,
});