ServiceEvent constructor

ServiceEvent({
  1. DateTime? createdAt,
  2. String? id,
  3. String? message,
})

Implementation

ServiceEvent({
  this.createdAt,
  this.id,
  this.message,
});