stopFastUpdateMode method

void stopFastUpdateMode({
  1. bool discard = false,
})

Stop landmark store fast update mode.

Parameters

  • IN discard Discard fast update mode session changes. Default is false.

Throws

  • An exception if it fails.

Implementation

void stopFastUpdateMode({bool discard = false}) {
  objectMethod(
    _pointerId,
    'LandmarkStore',
    'stopFastUpdateMode',
    args: discard,
  );
}