getMinPrecision method
Implementation
@override
Future<double> getMinPrecision() async {
try {
return await _methodChannel.invokeMethod('getMinPrecision');
} on PlatformException catch (e) {
throw Exception("Error Retrieving Min Precision Value: ${e.message}");
}
}