sendAudioMessage static method

Future sendAudioMessage(
  1. String jid,
  2. String filePath,
  3. bool isRecorded,
  4. String duration,
  5. String replyMessageId, [
  6. String? audiofileUrl,
])

Implementation

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