CustomDialog constructor

const CustomDialog({
  1. Key? key,
  2. Widget? child,
  3. bool clickBgHidden = false,
})

Implementation

const CustomDialog({
  Key? key,
  this.child,
  this.clickBgHidden = false, // 点击背景隐藏,默认不隐藏
}) : super(key: key);