addId method

LocalNotification addId(
  1. int id
)

Sets the notification ID.

Implementation

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