withBase64Video static method
Create an attachment with Base64 encoded video.
base64Video
video URL.
Implementation
static withBase64Video(String base64Video) {
MediaAttachment m = new MediaAttachment();
m.base64Video = base64Video;
return m;
}