createFileMessage method
创建文件消息(文件最大支持 100 MB)
Implementation
Future<String> createFileMessage({
@required String filePath,
@required String fileName,
}) async {
return await _channel.invokeMethod(
"createFileMessage",
_buildParam(
{
"filePath": filePath,
"fileName": fileName,
},
),
);
}