MessageInstruction constructor

const MessageInstruction({
  1. required int programIdIndex,
  2. required Iterable<int> accounts,
  3. required String data,
})

An instruction to execute by a program.

Implementation

const MessageInstruction({
  required this.programIdIndex,
  required this.accounts,
  required this.data,
});