getFromWhere static method

Future<String?> getFromWhere()

Implementation

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