toString method
Override the toString method to provide a string representation of the object.
Implementation
@override
String toString() {
return "CompiledInstruction{programIdIndex: $programIdIndex, accounts: $accounts, data: ${BytesUtils.toHexString(data)}}";
}