setFavoriteCatForUser method

Future<bool> setFavoriteCatForUser(
  1. dynamic catId
)

Implementation

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