readValue static method

  1. @Deprecated("Use [read] instead")
Future<Uint8List> readValue(
  1. String deviceId,
  2. String service,
  3. String characteristic, {
  4. Duration? timeout,
})

Implementation

@Deprecated("Use [read] instead")
static Future<Uint8List> readValue(
  String deviceId,
  String service,
  String characteristic, {
  final Duration? timeout,
}) {
  return read(deviceId, service, characteristic, timeout: timeout);
}