setNotificationCategories method

Future<void> setNotificationCategories(
  1. List<UNNotificationCategory> categories
)

Implementation

Future<void> setNotificationCategories(
    List<UNNotificationCategory> categories) {
  return _channel.invokeMethod(
    'setNotificationCategories',
    categories.map((e) => e.toJson()).toList(),
  );
}