stopCurrentCalibration method

void stopCurrentCalibration(
  1. dynamic payload
)

Stops the current calibration. A null payload tells the MapView to prompt the user to decide what to do with the current calibration (save, undo, cancel).

Do not use this method as it is intended for internal use.

Implementation

void stopCurrentCalibration(dynamic payload) {
  _sendMessage(WV_MESSAGE_CALIBRATIONS_STOP_CURRENT, jsonEncode(payload));
}