Blob constructor

Blob(
  1. List array,
  2. String type
)

Implementation

Blob(List<dynamic> array, String type) {
  throw UnsupportedError('Blob is only supported on web platforms');
}