For the complete documentation index, see llms.txt. This page is also available as Markdown.

MoveAssistanceCallStatus

A callback status for an initiated Assistance Call.

enum class MoveAssistanceCallStatus {
    SUCCESS,
    INITIALIZATION_ERROR,
    LOCATION_ERROR, // Deprecated with v2.3+
    NETWORK_ERROR
}
enum MoveAssistanceCallStatus {
    case success
    case initializationError
    case locationError // Deprecated with v2.4.0+
    case networkError
}
import 'package:movesdk/io/dolphin/move/move_assistance_call_status.dart';// Some code
enum MoveAssistanceCallStatus {
    success,
    initializationError,
    networkError,
}

MoveAssistanceCallStatus

success

The call was successfully sent

initializationError

The call could not be sent because MoveDetectionService.AssistanceCall is unauthorised. (see MoveConfig)

locationError

The call could not be sent due to missing location. Deprecated with v2.3+

networkError

The call could not be sent due to network issues.

Last updated