sendVideoMessage method
Future<V2TimValueCallback<V2TimMessage> >
sendVideoMessage({
- required String videoFilePath,
- required String receiver,
- required String type,
- required String snapshotPath,
- required int duration,
- required String groupID,
- MessagePriorityEnum? priority = MessagePriorityEnum.V2TIM_PRIORITY_NORMAL,
- bool onlineUserOnly = false,
- bool isExcludedFromUnreadCount = false,
- OfflinePushInfo? offlinePushInfo,
- String? fileName,
- Uint8List? fileContent,
发送视频消息。该接口已废弃 自3.6.0开始弃用,我们将创建消息与发送消息分离,请先使用createVideoMessage创建消息,再调用sendMessage发送消息'
web 端发送视频消息时需要传入fileName, fileContent字段 不支持 snapshotPath、duration、type
Implementation
Future<V2TimValueCallback<V2TimMessage>> sendVideoMessage({
required String videoFilePath,
required String receiver,
required String type,
required String snapshotPath,
required int duration,
required String groupID,
MessagePriorityEnum? priority = MessagePriorityEnum.V2TIM_PRIORITY_NORMAL,
bool onlineUserOnly = false,
bool isExcludedFromUnreadCount = false,
OfflinePushInfo? offlinePushInfo,
String? fileName,
Uint8List? fileContent,
}) async {
return V2TimValueCallback<V2TimMessage>.fromBool(false, 'not support');
}