wrapImageLinkWithImgTag static method

String wrapImageLinkWithImgTag(
  1. String imageLink
)

Wraps an image link with "img" tags

Implementation

static String wrapImageLinkWithImgTag(String imageLink) {
  return '<img src="$imageLink">';
}