getPitchDeviation method

  1. @override
Future<double> getPitchDeviation()
override

Implementation

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