LogEvent constructor

LogEvent({
  1. required Invokable? initiator,
  2. String? eventName,
  3. required String logLevel,
  4. required String? provider,
  5. String? operation,
  6. String? userId,
  7. Map? parameters,
  8. dynamic value,
  9. String? attributeKey,
  10. Map? originalPayload,
  11. EnsembleAction? onSuccess,
  12. EnsembleAction? onError,
})

Implementation

LogEvent({
  required Invokable? initiator,
  this.eventName,
  required this.logLevel,
  required this.provider,
  this.operation,
  this.userId,
  this.parameters,
  this.value,
  this.attributeKey,
  this.originalPayload,
  this.onSuccess,
  this.onError,
}) : super(initiator: initiator);