broadcastRemoveContact method

Future<ContactList?> broadcastRemoveContact(
  1. String toRemove,
  2. Iterable<String> relays,
  3. EventSigner signer
)

broadcast removal of contact

Implementation

Future<ContactList?> broadcastRemoveContact(
    String toRemove, Iterable<String> relays, EventSigner signer) async {
  return _broadcastRemoveContactInCollection(
      toRemove, relays, signer, (list) => list.contacts);
}