toString method

  1. @override
String toString()
override

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)}}";
}