microphoneVolumeIsAvailable function

Future<bool> microphoneVolumeIsAvailable()

Indicates whether the microphone is available to set volume.

Implementation

Future<bool> microphoneVolumeIsAvailable() async {
  if (isDesktop) {
    return await api!.microphoneVolumeIsAvailable();
  } else {
    // TODO(logist322): Implement for Channel-based implementation.
    return false;
  }
}