getWrappedStream static method

Future getWrappedStream(
  1. dynamic stream
)

Returns original stream it was crated from.

This method can be used to get original stream to dispose it.

Implementation

static Future<MediaStream?> getWrappedStream(MediaStream stream) {
  return _impl.getWrappedStream(stream);
}