integratedAddress method
Generate an integrated address by encoding the keys and payment ID.
Implementation
String integratedAddress(List<int> paymentId) {
return XmrIntegratedAddrEncoder().encodeKey(
pubSkey.compressed,
netVersion: coinConf.intAddrNetVer,
pubVKey: pubVkey.compressed,
paymentId: paymentId,
);
}