finish method
Implementation
@override
web.Blob finish() {
final blob = web.Blob(
_chunks.map((c) => c.toJS).toList().toJS,
web.BlobPropertyBag(type: 'audio/pcm'),
);
cleanup();
return blob;
}
@override
web.Blob finish() {
final blob = web.Blob(
_chunks.map((c) => c.toJS).toList().toJS,
web.BlobPropertyBag(type: 'audio/pcm'),
);
cleanup();
return blob;
}