ErrorEvent constructor

ErrorEvent({
  1. required String message,
  2. String? stack,
  3. String? componentName,
  4. Map<String, dynamic>? additionalInfo,
  5. required int timestamp,
})

Implementation

ErrorEvent({
  required this.message,
  this.stack,
  this.componentName,
  this.additionalInfo,
  required this.timestamp,
});