show method

void show(
  1. BuildContext context
)

Implementation

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