putUseCaseForModelAccess method
Put usecase for model access.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter formData :
Put customer profile Request.
Implementation
Future<void> putUseCaseForModelAccess({
required Uint8List formData,
}) async {
final $payload = <String, dynamic>{
'formData': base64Encode(formData),
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/use-case-for-model-access',
exceptionFnMap: _exceptionFns,
);
}