broadcastAddFollowedCommunity method

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

broadcast adding of followed community

Implementation

Future<ContactList> broadcastAddFollowedCommunity(
  String toAdd, {
  Iterable<String>? customRelays,
}) async {
  return _broadcastAddContactInCollection(
      toAdd, customRelays, (list) => list.followedCommunities);
}