listInputDevices method

Future<List<InputDevice>> listInputDevices()
inherited

Lists capture/input devices available on the platform.

On web, and in general, you should already have permission before accessing this method otherwise the list may return an empty list.

Implementation

Future<List<InputDevice>> listInputDevices() {
  return _safeCall(() => _platform.listInputDevices(_recorderId));
}