PeFileBase constructor

PeFileBase(
  1. Uint8List bytes
)

Implementation

PeFileBase(Uint8List bytes) {
  _buffer = calloc.allocate(bytes.length);
  _size = bytes.length;
  _buffer.asTypedList(_size).setAll(0, bytes);
}