broadcastRemoveFollowedCommunity method

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

broadcast removal of followed community

Implementation

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