show method

dynamic show(
  1. BuildContext context
)

Implementation

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