openDialog method

Future openDialog(
  1. Widget child, {
  2. EdgeInsets? padding,
  3. bool enableDrag = true,
  4. bool autoHeight = false,
})

Implementation

Future openDialog(Widget child, {EdgeInsets? padding, bool enableDrag = true, bool autoHeight = false}) async {
  return await _showNsgDialog(context, child, padding, enableDrag, autoHeight);
}