withBase64Video static method

dynamic withBase64Video(
  1. String base64Video
)

Create an attachment with Base64 encoded video.

base64Video video URL.

Implementation

static withBase64Video(String base64Video) {
  MediaAttachment m = new MediaAttachment();
  m.base64Video = base64Video;
  return m;
}