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