removeInput method

Future<void> removeInput(
  1. CaptureInput input
)

Removes a given input.

Implementation

Future<void> removeInput(CaptureInput input) {
  return _channel.$removeInput(this, input);
}