Pointer constructor

const Pointer({
  1. required BigInt slot,
  2. required BigInt txIndex,
  3. required BigInt certIndex,
})

Implementation

const Pointer({
  required this.slot,
  required this.txIndex,
  required this.certIndex,
});