sendEvent method

Future<EmptyResponse> sendEvent(
  1. String channelId,
  2. String channelType,
  3. Event event
)

Send an event to a particular channel

Implementation

Future<EmptyResponse> sendEvent(
  String channelId,
  String channelType,
  Event event,
) =>
    _chatApi.channel.sendEvent(
      channelId,
      channelType,
      event,
    );