UnflowEvent constructor

UnflowEvent({
  1. required String id,
  2. required String name,
  3. required int occurredAt,
  4. int? screenId,
  5. int? rating,
})

Implementation

UnflowEvent({
  required this.id,
  required this.name,
  required this.occurredAt,
  this.screenId,
  this.rating,
});