stream method
Implementation
Stream<Uint8List> stream(String recorderId) {
final recordEventChannel = EventChannel(
'com.softigent.audiostream/recordEvent/$recorderId',
);
return recordEventChannel.receiveBroadcastStream().map<Uint8List>((data) => data);
}