S360fDialog constructor

const S360fDialog({
  1. required Widget title,
  2. required List<Widget> contentWidgets,
  3. double width = 720.0,
  4. double? height,
  5. List<Widget> actions = const <Widget>[],
  6. Widget? icon,
  7. ImageProvider<Object>? image,
  8. bool showDivider = true,
  9. VoidCallback? onClose,
  10. ScrollController? scrollController,
  11. Key? key,
})

Implementation

const S360fDialog({
  required this.title,
  required this.contentWidgets,
  this.width = 720.0,
  this.height,
  this.actions = const <Widget>[],
  this.icon,
  this.image,
  this.showDivider = true,
  this.onClose,
  this.scrollController,
  super.key,
});