addSubtitle method

LocalNotification addSubtitle(
  1. String subtitle
)

Sets the subtitle for the notification.

Implementation

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