show method

dynamic show(
  1. BuildContext context
)

Implementation

show(BuildContext context) {
  return showModalBottomSheet(
      context: context,
      backgroundColor: Colors.transparent,
      isDismissible: closeOnClickOverlay,
      builder: (BuildContext context) {
        return _ShareSheet(this);
      });
}