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