sendAudioMessage static method

Future sendAudioMessage(
  1. String jid,
  2. String filePath,
  3. bool isRecorded,
  4. String duration,
  5. String replyMessageId, {
  6. String? audioFileUrl,
  7. String? topicId,
})

Implementation

static Future<dynamic> sendAudioMessage(String jid, String filePath, bool isRecorded, String duration, String replyMessageId,
    {String? audioFileUrl, String? topicId}) {
  return FlyChatFlutterPlatform.instance
      .sendAudioMessage(jid, filePath, isRecorded, duration, replyMessageId, audioFileUrl: audioFileUrl, topicId: topicId);
}