NotificationCategory constructor

NotificationCategory({
  1. required String? identifier,
  2. required List<NotificationAction>? actions,
})

Implementation

NotificationCategory({
  required this.identifier,
  required this.actions,
});