InfoEvent constructor

const InfoEvent({
  1. required int? timestamp,
  2. String? message,
})

Implementation

const InfoEvent({
  required super.timestamp,
  this.message,
});