getRawPcmDataFromStream method
Implementation
@override
Future<Uint8List> getRawPcmDataFromStream() async {
try {
return await _methodChannel.invokeMethod('getRawPcmDataFromStream');
} on PlatformException catch (e) {
throw Exception("PCM Stream Data Read Error: ${e.message}");
}
}