canAddInput method
Returns a Boolean value that indicates whether a given input can be added to the session.
Implementation
Future<bool> canAddInput(CaptureInput input) async {
return await _channel.$canAddInput(this, input) as bool;
}
Returns a Boolean value that indicates whether a given input can be added to the session.
Future<bool> canAddInput(CaptureInput input) async {
return await _channel.$canAddInput(this, input) as bool;
}