ChatViewEvent constructor

ChatViewEvent({
  1. required String eventName,
  2. dynamic payload,
})

Default constructor with all params.

Implementation

ChatViewEvent({
  required this.eventName,
  this.payload,
});