FileReadInput constructor

const FileReadInput({
  1. required String filePath,
  2. int? offset,
  3. int? limit,
  4. String? pages,
})

Implementation

const FileReadInput({
  required this.filePath,
  this.offset,
  this.limit,
  this.pages,
});