setCountry static method

void setCountry(
  1. VersionApps country
)

Implementation

static void setCountry(VersionApps country) async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  String countryS = "";
  if (country == VersionApps.singapura) {
    countryS = "singapore";
  }

  if (country == VersionApps.indonesia) {
    countryS = "indo";
  }

  await pref.setString(Key_Country, countryS);
}