unsubscribeFromAddress method
Unsubscribe from the given address
Implementation
void unsubscribeFromAddress(String address) {
// Get type and hash
final decoded = decodeCashAddress(address);
// Unsubscribe from script
unsubscribeFromScript(ScriptType.from(decoded.type.name), decoded.hash);
}