LangfuseEvent constructor

const LangfuseEvent({
  1. required String id,
  2. required String type,
  3. required DateTime timestamp,
  4. required Map<String, dynamic> body,
})

Implementation

const LangfuseEvent({
  required this.id,
  required this.type,
  required this.timestamp,
  required this.body,
});