changePace static method
- 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;
}