TriggerEntity constructor

TriggerEntity({
  1. Map<String, Object?>? customFeatures,
  2. String? name,
  3. String? sqlCode,
  4. String? triggerType,
  5. List<String>? triggeringEvents,
})

Implementation

TriggerEntity({
  this.customFeatures,
  this.name,
  this.sqlCode,
  this.triggerType,
  this.triggeringEvents,
});