show method

void show()

Implementation

void show() async {
  await showDialog(
    context: Get.context!,
    builder: (BuildContext context) {
      return this;
    },
  );
  return;
}