IdsDialog constructor

const IdsDialog({
  1. Key? key,
  2. required bool open,
  3. required List<Widget> children,
  4. ValueChanged<bool>? onOpenChanged,
  5. IdsDialogSize size = IdsDialogSize.md,
  6. bool dismissible = true,
})

Implementation

const IdsDialog({
  super.key,
  required this.open,
  required this.children,
  this.onOpenChanged,
  this.size = IdsDialogSize.md,
  this.dismissible = true,
});