executeExtension method

  1. @override
Future<ExecuteExtensionResponse> executeExtension(
  1. ExecuteExtensionRequest request
)
override

Executes the request against a given extension.

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<ExecuteExtensionResponse> executeExtension(
  ExecuteExtensionRequest request,
) async {
  if (isClosed) throw StateError('Service is closed');

  if (_executeExtension case final executeExtension?) {
    return executeExtension(request);
  }
  throw UnsupportedError('executeExtension');
}