app property

CarpApp get app

The CARP app associated with the CARP Web Service.

Throws a CarpServiceException if this service has not yet been configured via the configure method.

Implementation

CarpApp get app {
  if (_app == null) {
    throw CarpServiceException(
      "CARP Service not configured. Call 'configure()' first.",
    );
  } else {
    return _app!;
  }
}