TFileEntryInfo constructor

TFileEntryInfo({
  1. required String path,
  2. required String name,
  3. required int length,
  4. required int offset,
})

Implementation

TFileEntryInfo({
  required this.path,
  required this.name,
  required this.length,
  required this.offset,
});