showLanguesChoice method

dynamic showLanguesChoice()

Implementation

showLanguesChoice() {
  showDialog(
      context: Get.context!,
      barrierDismissible: true,
      builder: (BuildContext context) {
        return LanguageDialog();
      });
}