readSync 抽象方法

Uint8List readSync(
  1. int count
)

同步从文件中读取最多 count 字节

可能返回少于 count 字节。例如,当读取文件末尾之后或从当前不包含额外数据的管道读取时,可能会发生这种情况。

当读取文件末尾或 count0 时,将仅返回一个空的 Uint8List

如果操作失败,将抛出 FileSystemException

实现

Uint8List readSync(int count);