sendVideoMessage method
void
sendVideoMessage(})
Implementation
void sendVideoMessage(
String videoPath, String? name, int duration, int width, int height,
{NIMMessage? replyMsg}) {
MessageCreator.createVideoMessage(
videoPath, name, null, duration, width, height)
.then((value) {
if (value.isSuccess) {
sendMessage(value.data!, replyMsg: replyMsg);
}
});
}