watchNicks method

void watchNicks(
  1. List<String> nicks
)

Watch these nicks, so the server says when they come and go.

Implementation

void watchNicks(List<String> nicks) {
  _alive();
  command({'type': 'watch_nicks', 'nicks': nicks});
}