addBadgeNumber method

PushNotification addBadgeNumber(
  1. int badgeNumber
)

Add the badge number to the push notification

Implementation

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