getMinPrecision method

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

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}");
  }
}