getAllAvailableAudioInput static method

Future<String> getAllAvailableAudioInput()

Retrieves a list of all available audio input devices.

Returns a Future that completes with a String representing the list of available audio input devices.

The returned string may contain a JSON-encoded list of available audio input device identifiers.

Throws an exception if there is an error retrieving the list of available audio input devices.

Implementation

static Future<String> getAllAvailableAudioInput() async {
  return FlyChatFlutterPlatform.instance.getAllAvailableAudioInput();
}