broadcastAddContact method

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

broadcast adding of contact

Implementation

Future<ContactList> broadcastAddContact(
  String add, {
  Iterable<String>? customRelays,
}) async {
  return _broadcastAddContactInCollection(
      add, customRelays, (list) => list.contacts);
}