changePace static method
- bool isMoving
Changes the motion state (moving/stationary).
Implementation
static Future<bool> changePace(bool isMoving) async {
final result =
await LocusChannels.methods.invokeMethod('changePace', isMoving);
return result == true;
}