userId method

Future<String?> userId()

Implementation

Future<String?> userId() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getString(IDEA_CONFIRM_USERID);
}