setViewPort method

dynamic setViewPort(
  1. dynamic width,
  2. dynamic height
)

Implementation

setViewPort(width, height) {
  streams.forEach((key, stream) {
    if (stream.kind == 'video' && !isLocal) {
      _setViewPort(stream.id, width, height);
    }
  });
}