setProfile static method

void setProfile(
  1. String profile
)

Implementation

static void setProfile(String profile) async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  await pref.setString(Key_profile, profile);
}