getemail static method

Future<String?> getemail()

Implementation

static Future<String?> getemail() async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  return pref.getString(Key_email);
}