show method
Implementation
void show({bool isDismissible = true}) {
showModalBottomSheet(
context: context,
backgroundColor: Colors.transparent,
isDismissible: isDismissible,
builder: (BuildContext context) {
return GestureDetector(
child: this,
onVerticalDragUpdate: (v) => false,
);
}).then((value) {});
}