Message constructor
const
Message({
- required int? version,
- required MessageHeader header,
- required List<
Pubkey> accountKeys, - required String recentBlockhash,
- required Iterable<
MessageInstruction> instructions, - required List<
MessageAddressTableLookup> ? addressTableLookups,
Creates a the list of instructions
to be processed atomically by a transaction.
Implementation
const Message({
required this.version,
required this.header,
required this.accountKeys,
required this.recentBlockhash,
required this.instructions,
required final List<MessageAddressTableLookup>? addressTableLookups,
}) : addressTableLookups = const [];