withBase64Image static method
Create an attachment with Base64 encoded image.
base64Image
image URL.
Implementation
static withBase64Image(String base64Image) {
MediaAttachment m = new MediaAttachment();
m.base64Image = base64Image;
return m;
}