NotificationTrigger constructor

NotificationTrigger({
  1. required TriggerType type,
  2. required String identifier,
  3. required List<NotificationTriggerVariable> variables,
  4. List<NotificationTriggerVariable>? subscriberVariables,
  5. List<TriggerReservedVariable>? reservedVariables,
})

Implementation

NotificationTrigger({
  required this.type,
  required this.identifier,
  required this.variables,
  this.subscriberVariables,
  this.reservedVariables,
});