sendAudioMessageRequest static method
构建音频请求
Implementation
static Future<SendMessageResult> sendAudioMessageRequest(String uid, String tid, String title, String body, String audioPath, bool isGroup) async {
Map map = await _channel.invokeMethod("sendAudioMessageRequest",{
"uid": uid,
"tid": tid,
"title": title,
"body": body,
"audioPath": audioPath,
"isGroup": isGroup});
return SendMessageResult.convertFromMap(map);
}