setProfile static method
Implementation
static void setProfile(String profile,{String? data}) async {
SharedPreferences pref = await SharedPreferences.getInstance();
await pref.setString(Key_profile, profile);
if (data != null){
await pref.setString(Key_profile2, data);
}
}