unsubscribeFromAddress method

void unsubscribeFromAddress(
  1. String address
)

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