cancelDownloadMediaMessage static method
取消下载中的媒体文件
Implementation
static Future<bool?> cancelDownloadMediaMessage(int messageId) async {
bool? success = await _channel.invokeMethod(RCMethodKey.CancelDownloadMediaMessage, messageId);
return success;
}