changePace static method

Future<bool> changePace(
  1. bool isMoving
)

Changes the motion state (moving/stationary).

Implementation

static Future<bool> changePace(bool isMoving) async {
  final result = await _methodChannel.invokeMethod('changePace', isMoving);
  return result == true;
}