YmDialogBox constructor

YmDialogBox({
  1. Key? key,
  2. Widget? child,
  3. required dynamic onClick(),
  4. Alignment alignment = Alignment.bottomCenter,
})

Implementation

YmDialogBox({
  Key? key,
  this.child,
  required this.onClick,
  this.alignment = Alignment.bottomCenter,

}) : super(key: key);