setCacheMaxBatchFiles method

Future<void> setCacheMaxBatchFiles(
  1. int max
)

Sets the maximum amount of measurements can be cached in a single file. This is only available for Android and iOS @param max Amount of measurements

Implementation

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