toMultisigBlob method
Implementation
String toMultisigBlob(String address) {
final result = STObject.fromValue(toXrpl(), true).toBytes();
final accountIdBytes = AccountID.fromValue(address).toBytes();
return BytesUtils.toHexString([
...BytesUtils.fromHexString(_TransactionUtils._transactionMultisigPrefix),
...result,
...accountIdBytes
], lowerCase: false);
}