noise property

The stream of noise readings.

Remember to obtain permission to use the microphone BEFORE using this stream.

Implementation

Stream<NoiseReading> get noise => _stream ??=
    AudioStreamer().audioStream.map((buffer) => NoiseReading(buffer));