canAddInput method

Future<bool> canAddInput(
  1. CaptureInput input
)

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;
}