changePace method

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

Implementation

@override
Future<bool> changePace(bool isMoving) async {
  _methodCalls.add('changePace:$isMoving');
  _state = _state.copyWith(isMoving: isMoving);
  return true;
}