MoveShutdownResult
A result for the shutdown function with force: false.
enum class MoveShutdownResult {
SUCCESS,
NETWORK_ERROR,
UNINITIALIZED;
}public enum MoveShutdownResult {
case success
case networkError
case uninitialized
}import 'package:movesdk/io/dolphin/move/move_shutdown_result.dart';// Some codeenum MoveShutdownResult {
success,
networkError,
uninitialized,
}export declare type ShutdownReturnType = 'NETWORK_ERROR' | 'SUCCESS' | 'UNINITIALIZED';Error results will be returned with a rejected promise.
MoveShutdownResult
success
The shutdown completed.
networkError
The shutdown could not be completed since there is pending data.
uninitialized
The SDK was not setup. No user active.
Last updated