accept method

void accept(
  1. Uint8List bytes
)

Implementation

void accept(Uint8List bytes) {
  // Parse bytes received on the serial port
  for (int b in bytes) {
    acceptByte(b);
  }
}