SoftUiDialog constructor

const SoftUiDialog({
  1. required Widget child,
  2. bool isFullscreen = false,
  3. List<Widget> actions = const [],
  4. String? title,
  5. double? width,
  6. double? height,
  7. Key? key,
})

Implementation

const SoftUiDialog({
  required this.child,
  this.isFullscreen = false,
  this.actions = const [],
  this.title,
  this.width,
  this.height,
  super.key,
});