setemail static method

void setemail(
  1. String email
)

Implementation

static void setemail(String email) async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  await pref.setString(Key_email, email);
}