transformRequest abstract method

Future<String> transformRequest(
  1. RequestOptions options
)

transformRequest allows changes to the request data before it is sent to the server, but after the RequestInterceptor.

This is only applicable for request methods 'PUT', 'POST', and 'PATCH'

Implementation

Future<String> transformRequest(RequestOptions options);