Creates an Elf from bytes.
bytes
Returns null if the file does not start with the ELF magic number.
static Elf? fromBuffer(Uint8List bytes) => Elf.fromReader(Reader.fromTypedData(bytes));