toMultisigBlob method
Implementation
String toMultisigBlob(String address) {
final result = STObject.fromValue(toXrpl(), true).toBytes();
final accountIdBytes = AccountID.fromValue(address).buffer;
return bytesToHex(Uint8List.fromList([
...hexToBytes(_transactionMultisigPrefix),
...result,
...accountIdBytes
]));
}