LogEvent constructor
LogEvent({
- required Invokable? initiator,
- String? eventName,
- required String logLevel,
- required String? provider,
- String? operation,
- String? userId,
- Map? parameters,
- dynamic value,
- String? attributeKey,
- Map? originalPayload,
- EnsembleAction? onSuccess,
- 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);