Message constructor

const Message({
  1. required List<Instruction> instructions,
})

Construct a message to send with a transaction to execute the provided instructions.

Implementation

const factory Message({
  required List<Instruction> instructions,
}) = _Message;