FirebaseCrashlyticsLogEvent constructor
FirebaseCrashlyticsLogEvent({})
Constructs a FirebaseCrashlyticsLogEvent with optional stack trace and required event attributes.
stackTrace
- A string representing the stack trace associated with the error.
eventName
- A name describing the type of event.
eventMessage
- A message providing additional details about the event.
parameters
- A map containing additional data that should be logged with the event.
Implementation
FirebaseCrashlyticsLogEvent({
this.stackTrace,
required super.eventName,
super.eventMessage,
super.parameters,
});