Client constructor

Client(
  1. String endpoint, [
  2. Map<String, dynamic>? options
])

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');
}