registerAll method

void registerAll(
  1. Iterable<NotificationAction> actions
)

Implementation

void registerAll(Iterable<NotificationAction> actions) {
  for (final action in actions) {
    register(action);
  }
}