BarrierDialog constructor

const BarrierDialog({
  1. Key? key,
  2. required bool show,
  3. required Widget title,
  4. required Widget child,
  5. Widget? content,
  6. List<Widget>? actions,
  7. Color? backgroundColor,
})

Implementation

const BarrierDialog({
  super.key,
  required this.show,
  required this.title,
  required this.child,
  this.content,
  this.actions,
  this.backgroundColor,
});