connectFirst method

Future<void> connectFirst()

Connects the first client only (lazy startup).

Implementation

Future<void> connectFirst() async {
  if (_entries.isNotEmpty) await _entries.first.ensureConnected();
}