sendStepLength method

Future<void> sendStepLength(
  1. int stepLength
)

Implementation

Future<void> sendStepLength(int stepLength) async {
  return await mConnMethodChannel.invokeMethod(
      'sendStepLength', <String, int>{"stepLength": stepLength});
}