createNotificationChannelGroup method

Future<void> createNotificationChannelGroup(
  1. AndroidNotificationChannelGroup notificationChannelGroup
)

Creates a notification channel group.

This method is only applicable to Android versions 8.0 or newer.

Implementation

Future<void> createNotificationChannelGroup(
  AndroidNotificationChannelGroup notificationChannelGroup,
) => _channel.invokeMethod(
  'createNotificationChannelGroup',
  notificationChannelGroup.toMap(),
);