SessionEvent constructor

SessionEvent({
  1. String name = '',
  2. required String author,
  3. Content? content,
  4. required String invocationId,
  5. EventActions? actions,
  6. required Timestamp? timestamp,
  7. String errorCode = '',
  8. String errorMessage = '',
  9. EventMetadata? eventMetadata,
})

Implementation

SessionEvent({
  this.name = '',
  required this.author,
  this.content,
  required this.invocationId,
  this.actions,
  required this.timestamp,
  this.errorCode = '',
  this.errorMessage = '',
  this.eventMetadata,
}) : super(fullyQualifiedName);