addId method

PushNotification addId(
  1. int id
)

Add an id to the push notification

Implementation

PushNotification addId(int id) {
  _id = id;
  return this;
}