EventInfo constructor

EventInfo({
  1. String? bloc,
  2. String? event,
  3. DateTime? timestamp,
})

Implementation

EventInfo({
  this.bloc,
  this.event,
  this.timestamp,
});