ElfRelocation constructor

const ElfRelocation({
  1. required int offset,
  2. required int symbolIndex,
  3. required int type,
})

Implementation

const ElfRelocation({
  required this.offset,
  required this.symbolIndex,
  required this.type,
});