addSilent method

PushNotification addSilent(
  1. bool silent
)

Add silent to the push notification

Implementation

PushNotification addSilent(bool silent) {
  _silent = silent;
  return this;
}