getPitchDeviation method
Implementation
@override
Future<double> getPitchDeviation() async {
try {
return await _methodChannel.invokeMethod('getPitchDeviation');
} on PlatformException catch (e) {
throw Exception("Pitch Deviation Read Error: ${e.message}");
}
}