W3cubDocs

/Dart 2

Blob constructor

Blob(List blobParts, [ String type, String endings ])

Implementation

factory Blob(List blobParts, [String type, String endings]) {
  // TODO: validate that blobParts is a JS Array and convert if not.
  // TODO: any coercions on the elements of blobParts, e.g. coerce a typed
  // array to ArrayBuffer if it is a total view.
  if (type == null && endings == null) {
    return _create_1(blobParts);
  }
  var bag = _create_bag();
  if (type != null) _bag_set(bag, 'type', type);
  if (endings != null) _bag_set(bag, 'endings', endings);
  return _create_2(blobParts, bag);
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-html/Blob/Blob.html