removeFavoriteCatForUser method

Future<bool> removeFavoriteCatForUser(
  1. dynamic catId
)

Implementation

Future<bool> removeFavoriteCatForUser(catId) async {
  NetworkResponse response = await _api.removeFavoriteCatForUser(catId);
  return response.data ?? false;
}