callPost method

  1. @Deprecated('Use post() instead')
Future<Response> callPost(
  1. String url, {
  2. dynamic data,
})

Deprecated methods kept for backward compatibility

Implementation

@Deprecated('Use post() instead')
Future<Response> callPost(String url, {data}) => post(url, data: data);