CDKDialogPopover constructor

const CDKDialogPopover(
  1. {Key? key,
  2. required GlobalKey<State<StatefulWidget>> anchorKey,
  3. CDKDialogPopoverType type = CDKDialogPopoverType.center,
  4. bool isAnimated = false,
  5. bool isTranslucent = false,
  6. Function? onHide,
  7. required Widget child}
)

Implementation

const CDKDialogPopover({
  Key? key,
  required this.anchorKey,
  this.type = CDKDialogPopoverType.center,
  this.isAnimated = false,
  this.isTranslucent = false,
  this.onHide,
  required this.child,
}) : super(key: key);