fetchPublisherModelConfig method

  1. @override
Future<PublisherModelConfig> fetchPublisherModelConfig(
  1. FetchPublisherModelConfigRequest request
)
override

Fetches the configs of publisher models.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<PublisherModelConfig> fetchPublisherModelConfig(
  FetchPublisherModelConfigRequest request,
) async {
  if (isClosed) throw StateError('Service is closed');

  if (_fetchPublisherModelConfig case final fetchPublisherModelConfig?) {
    return fetchPublisherModelConfig(request);
  }
  throw UnsupportedError('fetchPublisherModelConfig');
}