removeOutput method

Future<void> removeOutput(
  1. CaptureOutput output
)

Removes a given output.

Implementation

Future<void> removeOutput(CaptureOutput output) {
  return _channel.$removeOutput(this, output);
}