ProgramAccount constructor

const ProgramAccount({
  1. required String pubkey,
  2. required AccountInfo account,
})

The ProgramAccount public key for a node.

Implementation

const ProgramAccount({
  required this.pubkey,
  required this.account,
});