setStreamOptions method

Future<void> setStreamOptions(
  1. String name,
  2. int width,
  3. int height
)

Set the options for a stream with the given name.

Implementation

Future<void> setStreamOptions(String name, int width, int height) {
  return _streamManager.setStreamOptions(name, width, height);
}