NotificationEvent constructor

NotificationEvent(
  1. EventType? eventType,
  2. DateTime? timestamp
)
Initializes a new instance of the Type of the event. The event timestamp.

Implementation

NotificationEvent(enumerations.EventType? eventType, DateTime? timestamp) {
  this.eventType = eventType;
  this.timestamp = timestamp;
}