write method

Future<void> write(
  1. Uint8List data
)

Writes the given data to the characteristic.

Implementation

Future<void> write(Uint8List data) => _BlePlatform.instance.centralManagerWriteCharacteristic(deviceId, serviceId, id, data);