finish method

  1. @override
Blob finish()
override

Implementation

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

  cleanup();

  return blob;
}