broadcastRemoveFollowedEvent method

Future<ContactList?> broadcastRemoveFollowedEvent(
  1. String toRemove, {
  2. Iterable<String>? customRelays,
})

broadcast removal of followed event

Implementation

Future<ContactList?> broadcastRemoveFollowedEvent(
  String toRemove, {
  Iterable<String>? customRelays,
}) async {
  return _broadcastRemoveContactInCollection(
      toRemove, customRelays, (list) => list.followedEvents);
}