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