canAddOutput method
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;
}
Returns a Boolean value that indicates whether a given output can be added to the session.
Future<bool> canAddOutput(CaptureOutput output) async {
return await _channel.$canAddOutput(this, output) as bool;
}