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

MoveScanResult

MOVE Models

Since MOVE SDK v2.4

data class MoveScanResult(
    val device: MoveDevice,
    val isDiscovered: Boolean,
)
public struct MoveScanResult {
    let device: MoveDevice
    let isDiscovered: Bool
}
export type MoveScanResult = {
    isDiscovered: boolean;
    device: MoveSdkDevice;
    name: string;
};
import 'package:movesdk/io/dolphin/move/move_device.dart';
class MoveScanResult {
  bool isDiscovered;
  MoveDevice device;
}

MoveScanResult

Type

isDiscovered

Boolean

This MoveDevice was found / not found during the last BDD - DeviceDiscovery scan.

MoveScanResult related

deviceDiscoveryListener (Android / iOS)

Last updated