post method

  1. @Deprecated('This operation has been deprecated, use `customPost` instead')
Future<Object> post({
  1. required String path,
  2. Map<String, Object>? parameters,
  3. Object? body,
  4. RequestOptions? requestOptions,
})

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);
}