EventStoreClient constructor

EventStoreClient({
  1. required EventStoreClientSettings settings,
  2. List<ClientInterceptor> interceptors = const [],
  3. Map<String, GrpcErrorCallback> exceptionMap = const {},
})

Implementation

EventStoreClient({
  required EventStoreClientSettings settings,
  List<ClientInterceptor> interceptors = const [],
  Map<String, GrpcErrorCallback> exceptionMap = const {},
}) : super(
        settings: settings,
        interceptors: interceptors,
        exceptionMap: exceptionMap,
      );