sendBytes method

void sendBytes(
  1. List<int> bytes
)

Sends bytes to the device via Serial.

Implementation

void sendBytes(List<int> bytes) => _serial.write(Uint8List.fromList(bytes));