LogEvent constructor

LogEvent({
  1. DateTime? createdAt,
  2. String? message,
})

Implementation

LogEvent({
  this.createdAt,
  this.message,
});