addSubtitle method

PushNotification addSubtitle(
  1. String subtitle
)

Add a subtitle to the push notification

Implementation

PushNotification addSubtitle(String subtitle) {
  _subtitle = subtitle;
  return this;
}