registerAll method

void registerAll(
  1. Iterable<NotificationChannel> channels
)

Implementation

void registerAll(Iterable<NotificationChannel> channels) {
  for (final channel in channels) {
    register(channel);
  }
}