appendType method

NotificationsQuery appendType(
  1. String type
)

Append type to query.

type Notification type.

Implementation

NotificationsQuery appendType(String type) {
  this.types.add(type);
  return this;
}