addAutoCancel method

PushNotification addAutoCancel(
  1. bool autoCancel
)

Add auto cancel to the push notification

Implementation

PushNotification addAutoCancel(bool autoCancel) {
  _autoCancel = autoCancel;
  return this;
}