deviceCharacteristicWrite method

  1. @override
Future deviceCharacteristicWrite(
  1. String id,
  2. String serviceId,
  3. String characteristicId,
  4. Uint8List value,
  5. bool withResponse,
)
override

Implementation

@override
Future deviceCharacteristicWrite(String id, String serviceId, String characteristicId, Uint8List value, bool withResponse) =>
    methodChannel.invokeMethod(
      'deviceCharacteristicWrite',
      {
        'deviceId': id,
        'serviceId': serviceId,
        'characteristicId': characteristicId,
        'value': value,
        'withResponse': withResponse,
      },
    );