updateApplication method
Update Application Update an application.
Parameters:
applicationId
- The identifier for the application.updateApplicationRequest
- Application details.cancelToken
- ACancelToken
that can be used to cancel the operationheaders
- Can be used to add additional headers to the requestextras
- Can be used to add flags to the requestvalidateStatus
- AValidateStatus
callback that can be used to determine request success based on the HTTP status of the responseonSendProgress
- AProgressCallback
that can be used to get the send progressonReceiveProgress
- AProgressCallback
that can be used to get the receive progress
Returns a Future
Throws DioException
if API call or serialization fails
Implementation
Future<Response<void>> updateApplication({
required String applicationId,
UpdateApplicationRequest? updateApplicationRequest,
CancelToken? cancelToken,
Map<String, dynamic>? headers,
Map<String, dynamic>? extra,
ValidateStatus? validateStatus,
ProgressCallback? onSendProgress,
ProgressCallback? onReceiveProgress,
}) async {
final path = r'/api/v1/applications/{application_id}'.replaceAll('{' r'application_id' '}', encodeQueryParameter(_serializers, applicationId, const FullType(String)).toString());
final options = Options(
method: r'PATCH',
headers: <String, dynamic>{
...?headers,
},
extra: <String, dynamic>{
'secure': <Map<String, String>>[
{
'type': 'http',
'scheme': 'bearer',
'name': 'kindeBearerAuth',
},
],
...?extra,
},
contentType: 'application/json',
validateStatus: validateStatus,
);
dynamic bodyData;
try {
const type = FullType(UpdateApplicationRequest);
bodyData = updateApplicationRequest == null ? null : _serializers.serialize(updateApplicationRequest, specifiedType: type);
} catch(error, stackTrace) {
throw DioException(
requestOptions: options.compose(
_dio.options,
path,
),
type: DioExceptionType.unknown,
error: error,
stackTrace: stackTrace,
);
}
final response = await _dio.request<Object>(
path,
data: bodyData,
options: options,
cancelToken: cancelToken,
onSendProgress: onSendProgress,
onReceiveProgress: onReceiveProgress,
);
return response;
}