show method

Future show(
  1. BuildContext context
)

Implementation

Future show(BuildContext context) {
  if (onDragClose != null || onCloseIconPressed != null) {
  return  _showCustomBottomSheet(context);
  } else {
  return  _showStandardBottomSheet(context);
  }
}