ElfSection constructor

const ElfSection({
  1. required int index,
  2. required String name,
  3. required int type,
  4. required int offset,
  5. required int size,
  6. required int link,
  7. required int info,
  8. required int entrySize,
})

Implementation

const ElfSection({
  required this.index,
  required this.name,
  required this.type,
  required this.offset,
  required this.size,
  required this.link,
  required this.info,
  required this.entrySize,
});