addShowWhen method

PushNotification addShowWhen(
  1. bool showWhen
)

Add show when to the push notification

Implementation

PushNotification addShowWhen(bool showWhen) {
  _showWhen = showWhen;
  return this;
}