ChatEvents constructor

const ChatEvents({
  1. required List<ChatEvent> events,
  2. dynamic extra,
  3. int? clientId,
})

Contains a list of chat events

Implementation

const ChatEvents({
  required this.events,
  this.extra,
  this.clientId,
});