isFastUpdateMode method

bool isFastUpdateMode()

Get fast update mode state.

Returns

  • True if fast update mode is active, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool isFastUpdateMode() {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStore',
    'isFastUpdateMode',
  );

  return resultString['result'];
}