sendAction method

Future<SendActionResponse> sendAction(
  1. String channelId,
  2. String channelType,
  3. String messageId,
  4. Map<String, Object?> formData,
)

Send action for a specific message of this channel

Implementation

Future<SendActionResponse> sendAction(
  String channelId,
  String channelType,
  String messageId,
  Map<String, Object?> formData,
) =>
    _chatApi.message.sendAction(
      channelId,
      channelType,
      messageId,
      formData,
    );