show method
Implementation
void show(BuildContext context) {
showDialog(
context: context,
barrierDismissible: barrierDismissable,
builder: (context) {
return Dialog(
backgroundColor: Colors.transparent,
child: this,
);
},
);
}