FastSeekListCSV constructor

const FastSeekListCSV({
  1. required List<FieldDefinition> header,
  2. required List<List<ListRecord>> recordIndex,
  3. required int length,
})

Implementation

const FastSeekListCSV({
  required super.header,
  required this.recordIndex,
  required this.length,
}) : super(records: const []);