startStream method

Future<Stream<Uint8List>> startStream(
  1. String recorderId,
  2. RecordConfig config
)

Same as start with output stream instead of a path.

When stopping the record, you must rely on stream close event to get full recorded data.

Implementation

Future<Stream<Uint8List>> startStream(
        String recorderId, RecordConfig config) =>
    throw UnimplementedError(
        'startStream not implemented on the current platform.');