ShowDialogWidget constructor

const ShowDialogWidget({
  1. Key? key,
  2. required BuildContext context,
  3. required Widget wrapper,
  4. Color? barrierColor,
  5. EdgeInsetsGeometry? paddings,
  6. bool isDismissible = true,
  7. bool isDialog = false,
  8. bool animate = false,
})

Implementation

const ShowDialogWidget({
  super.key,
  required this.context,
  required this.wrapper,
  this.barrierColor,
  this.paddings,
  this.isDismissible = true,
  this.isDialog = false,
  this.animate = false,
});