sendStepLength method

Future<void> sendStepLength(
  1. int stepLength
)

In the watch firmware 1.6.6 and above, you can set the step length to the watch to calculate the activity data more accurately.

Implementation

Future<void> sendStepLength(int stepLength) {
  return _platform.sendStepLength(stepLength);
}