initializeCountryController function

CountryController initializeCountryController()

Implementation

CountryController initializeCountryController() {
  CountryController countryController = Get.put(CountryController());

  countryController.updateSelectedCountry(
    Country(
      name: "Afghanistan",
      countryCode: "AF",
      phoneCode: "+93",
    ),
  );

  return countryController;
}