addBadgeNumber method

LocalNotification addBadgeNumber(
  1. int badgeNumber
)

Sets the badge number for the notification.

Implementation

LocalNotification addBadgeNumber(int badgeNumber) {
  _badgeNumber = badgeNumber;
  return this;
}