openRead method

FileReadSession<Uint8List> openRead(
  1. String path, {
  2. int chunkSize = 64 * 1024,
  3. int start = 0,
  4. int? end,
})

Implementation

FileReadSession<Uint8List> openRead(
  String path, {
  int chunkSize = 64 * 1024,
  int start = 0,
  int? end,
}) {
  throw UnimplementedError('openRead() has not been implemented.');
}