addActions method

PushNotification addActions(
  1. List<AndroidNotificationAction> actions
)

Add actions to the push notification

Implementation

PushNotification addActions(List<AndroidNotificationAction> actions) {
  _actions = actions;
  return this;
}