bitDepth property

Future<int> bitDepth

The actual bit depth used for streaming. Only completes once a stream started.

Implementation

static Future<int> get bitDepth async {
  _memoisedBitDepth = await _microphoneFuture.then((_) {
    return _microphoneMethodChannel.invokeMethod("getBitDepth")
        .then((value) => value as int);
  });
  return _memoisedBitDepth!;
}