constructHtmlForVideo function

String constructHtmlForVideo(
  1. String url,
  2. String htmlRefLabel,
  3. String htmlReference
)

Implementation

String constructHtmlForVideo(
    String url, String htmlRefLabel, String htmlReference) {
  return process(kVideoHtml, parameters: <String, String>{
    '\${VIDEO_URL}': url,
    '\${HTML_REF_LABEL}': htmlRefLabel,
    '\${HTML_REF_ID}': htmlReference,
  });
}