EventNotification constructor

EventNotification({
  1. String? eventToNotify,
  2. String? eventDetails,
  3. String? rejectedMessage,
  4. String? timeStamp,
  5. Map<String, dynamic>? additionalAttributes,
})

Creates a new event notification.

Implementation

EventNotification({
  this.eventToNotify,
  this.eventDetails,
  this.rejectedMessage,
  this.timeStamp,
  Map<String, dynamic>? additionalAttributes,
}) : additionalAttributes = additionalAttributes ?? <String, dynamic>{};