BagelEvent constructor

BagelEvent({
  1. String? trigger,
  2. String? collectionID,
  3. String? organization,
  4. dynamic item,
  5. String? projectID,
  6. required List data,
  7. String? itemID,
})

Implementation

BagelEvent(
    {this.trigger,
    this.collectionID,
    this.organization,
    this.item,
    this.projectID,
    required this.data,
    this.itemID});