client property

ClientRuntime get client

The underlying client (available after connect); used by later milestones for node/session calls.

Implementation

ClientRuntime get client {
  final c = _client;
  if (c == null) {
    throw const AppError(AppErrorKind.transport, 'Not connected to a Hub.');
  }
  return c;
}