BytesFileIO constructor

BytesFileIO(
  1. RandomAccessFile io, {
  2. int? length,
})

Implementation

BytesFileIO(RandomAccessFile io, {int? length})
    : this._(io, length ??= io.lengthSync());