symtab property

ElfSection? get symtab

Implementation

ElfSection? get symtab {
  for (final section in sections) {
    if (section.type == ElfSection.typeSymtab) return section;
  }
  return null;
}