getMeasurementSystem method

Future<String?> getMeasurementSystem()

get the measurement system: SI, UK or US (SI is metrical system)

Implementation

Future<String?> getMeasurementSystem() async {
  return await methodChannel.invokeMethod<String>('getMeasurementSystem');
}