serviceServer property

Server get serviceServer

The service server managed by this Serverpod.

Implementation

Server get serviceServer {
  var service = _insightsServer;
  if (service == null) {
    throw StateError(
      'Insights server is disabled, supply a Insights configuration '
      'to enable this feature.',
    );
  }

  return service;
}