canAddOutput method

Future<bool> canAddOutput(
  1. CaptureOutput output
)

Returns a Boolean value that indicates whether a given output can be added to the session.

Implementation

Future<bool> canAddOutput(CaptureOutput output) async {
  return await _channel.$canAddOutput(this, output) as bool;
}