changePace method

  1. @override
Future<bool> changePace(
  1. bool isMoving
)
override

Changes the motion state (moving/stationary).

Use this to manually indicate movement state when automatic detection may be inaccurate.

Implementation

@override
Future<bool> changePace(bool isMoving) {
  return _instance.changePace(isMoving);
}