getUserProfileUrl method

Future<String?> getUserProfileUrl()

Implementation

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