UNNotificationCategory constructor

UNNotificationCategory({
  1. required String identifier,
  2. required List<UNNotificationAction> actions,
  3. required List<String> intentIdentifiers,
  4. required List<UNNotificationCategoryOptions> options,
})

Implementation

UNNotificationCategory({
  required this.identifier,
  required this.actions,
  required this.intentIdentifiers,
  required this.options,
});