toBytes method

Uint8List toBytes(
  1. RpcConfig config
)

Implementation

Uint8List toBytes(RpcConfig config) {
  final bytes = BytesBuilder();
  if (config.extendedFunctionIdentifiers) {
    bytes.addByte(function >> 8);
  }
  bytes.addByte(function);
  bytes.addByte(channel >> 8);
  bytes.addByte(channel);
  bytes.add(data);
  return bytes.toBytes();
}