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