createImageMessage method
创建图片消息(图片最大支持 28 MB)
Implementation
Future<String> createImageMessage({
@required String imagePath,
}) async {
return await _channel.invokeMethod(
"createImageMessage",
_buildParam(
{
"imagePath": imagePath,
},
),
);
}