Client constructor
Implementation
Client(String endpoint, [Map<String, dynamic>? options])
: _endpoint = endpoint,
_dispatcher = Dispatcher(endpoint, options ?? {}) {
_logger.info('Client: Creating client for endpoint: $_endpoint');
_logger.info('Client: Options: $options');
_initialize();
_logger.info('Client: Client created successfully');
}