CDKDialogModal constructor

const CDKDialogModal({
  1. Key? key,
  2. bool isAnimated = false,
  3. bool isTranslucent = false,
  4. Function? onHide,
  5. required Widget child,
})

Implementation

const CDKDialogModal({
  Key? key,
  this.isAnimated = false,
  this.isTranslucent = false,
  this.onHide,
  required this.child,
}) : super(key: key);