setCategory method

NotificationFeedRequestBuilder setCategory(
  1. String category
)

Sets the category filter. Android Reference: NotificationFeedRequestBuilder.setCategory(String category)

Implementation

NotificationFeedRequestBuilder setCategory(String category) {
  _category = category;
  return this;
}