descriptorOf

fun descriptorOf(service: Uuid, characteristic: Uuid, descriptor: Uuid): Descriptor


fun descriptorOf(service: String, characteristic: String, descriptor: String): Descriptor

Deprecated

Use `descriptorOf` that accepts `Uuid` arguments.

Replace with

descriptorOf(Uuid.parse(service), Uuid.parse(characteristic), Uuid.parse(descriptor))