getHtmlBlob function

Blob getHtmlBlob(
  1. List blobParts, [
  2. String? type,
  3. String? endings
])

Implementation

html.Blob getHtmlBlob(List blobParts, [String? type, String? endings]) {
  return html.Blob(blobParts, type, endings);
}