withVideoUrl static method
Create an attachment with video URL.
videoUrl
video URL.
Implementation
static withVideoUrl(String videoUrl) {
MediaAttachment m = new MediaAttachment();
m.videoUrl = videoUrl;
return m;
}
Create an attachment with video URL.
videoUrl
video URL.
static withVideoUrl(String videoUrl) {
MediaAttachment m = new MediaAttachment();
m.videoUrl = videoUrl;
return m;
}