setToleranceCents method
Implementation
@override
Future<void> setToleranceCents(double toleranceCents) async {
try {
await _methodChannel.invokeMethod('setToleranceCents', {
'toleranceCents': toleranceCents,
});
} on PlatformException catch (e) {
throw Exception('Failed to set toleranceCents: ${e.message}');
}
}