toBytes method

Future<Uint8List> toBytes(
  1. int recorderId
)

Returns the bytes of a stopped recording as a Uint8List.

Note that this can only be called once the recording has ben stopped via stop.

Implementation

Future<Uint8List> toBytes(int recorderId) {
  throw UnimplementedError('toBytes() has not been implemented.');
}