read method

Future<Uint8List> read({
  1. Duration? timeout,
})

Reads the current value of the characteristic.

Implementation

Future<Uint8List> read({
  Duration? timeout,
}) =>
    UniversalBle.read(
      _deviceId,
      _serviceId,
      uuid,
      timeout: timeout,
    );