uuids property

List<BlueZUUID> get uuids

List of 128-bit UUIDs that represents the available local services.

Implementation

List<BlueZUUID> get uuids =>
    (_object.getStringArrayProperty(_adapterInterfaceName, 'UUIDs') ?? [])
        .map((value) => BlueZUUID.fromString(value))
        .toList();