createObjectUrl static method

String createObjectUrl(
  1. dynamic blob_OR_source_OR_stream
)

Implementation

static String createObjectUrl(blob_OR_source_OR_stream) => JS(
  'String',
  '(self.URL || self.webkitURL).createObjectURL(#)',
  blob_OR_source_OR_stream,
);