readSync 抽象方法

List<int>? readSync(
  1. int bytes
)

从套接字中读取最多 bytes 字节。

阻塞并等待套接字发送的最多指定字节数的响应。 bytes 指定要读取的最大字节数。返回读取的字节列表,可能少于 bytes 指定的值。

实现

List<int>? readSync(int bytes);