RelayPoolApi constructor

RelayPoolApi({
  1. required List<String> relaysList,
})

Creates a new RelayPool instance with the specified list of relay URLs.

Implementation

factory RelayPoolApi({required List<String> relaysList}) =>
    RelayPool(relays: relaysList);