removeUserRequestCache method

  1. @override
Future<bool> removeUserRequestCache(
  1. String key
)
override

The removeUserRequestCache method is used to remove all user request data from local storage. It takes a key parameter, which is used to identify the specific data entry to remove. The method returns a Future<bool>, which indicates whether the removal operation was successful (true) or not (false).

Implementation

@override
Future<bool> removeUserRequestCache(String key) async {
  return _manager.removeAllLocalData(key);
}