stream method

Stream<Uint8List> stream(
  1. String recorderId
)

Implementation

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