appendAction method

NotificationsQuery appendAction(
  1. String action
)

Append action to query.

action Notification action.

Implementation

NotificationsQuery appendAction(String action) {
  this.actions.add(action);
  return this;
}