constructHtmlForVideo function
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,
});
}