createNotificationChannel method

Future<void> createNotificationChannel({
  1. required String channelId,
  2. required String channelName,
  3. SLNotificationPriority priority = SLNotificationPriority.defaultPriority,
})

Implementation

Future<void> createNotificationChannel(
    {required String channelId,
    required String channelName,
    SLNotificationPriority priority =
        SLNotificationPriority.defaultPriority}) async {
  throw UnimplementedError(
      'createNotificationChannel() has not been implemented.');
}