setCacheMaxMeasurements method

Future<void> setCacheMaxMeasurements(
  1. int max
)

Sets the maximum amount of measurements that can be cached. @param max Amount of measurements

Implementation

Future<void> setCacheMaxMeasurements(int max) {
  return methodChannel.invokeMethod('setCacheMaxMeasurements', {Args.max: max});
}