Payload constructor

const Payload({
  1. String? target,
  2. DateTime? timestamp,
  3. required String message,
})

Create a new event payload.

Implementation

const Payload({
  this.target,
  this.timestamp,
  required this.message,
});