post method
Implementation
@Deprecated('This operation has been deprecated, use `customPost` instead')
Future<Object> post({
required String path,
Map<String, Object>? parameters,
Object? body,
RequestOptions? requestOptions,
}) async {
return customPost(
path: path, parameters: parameters, requestOptions: requestOptions);
}