saveUserProfileUrl method

Future<bool> saveUserProfileUrl(
  1. String getUserProfile
)

Implementation

Future<bool> saveUserProfileUrl(String getUserProfile) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return await prefs.setString(userProfilePicKey, getUserProfile);
}