sendVideoMessage method

Future<String> sendVideoMessage(
  1. String jid,
  2. String filePath,
  3. String? caption,
  4. String? replyMessageID, {
  5. String? videoFileUrl,
  6. num? videoDuration,
  7. String? thumbImageBase64,
  8. String? topicId,
})

This method is used to send the video message.

Implementation

Future<String> sendVideoMessage(
    String jid, String filePath, String? caption, String? replyMessageID,
    {String? videoFileUrl,
    num? videoDuration,
    String? thumbImageBase64,
    String? topicId}) {
  throw UnimplementedError('has not been implemented.');
}