fromBytes static method

Dwarf? fromBytes(
  1. Uint8List bytes
)

Attempts to load the DWARF debugging information from the given bytes.

Returns a Dwarf object if the load succeeds, otherwise returns null.

Implementation

static Dwarf? fromBytes(Uint8List bytes) =>
    Dwarf.fromReader(Reader.fromTypedData(bytes));