put abstract method

Future<CustomApiResponse> put(
  1. String endpoint,
  2. dynamic data, {
  3. bool includeToken = true,
  4. bool isMultipart = false,
  5. RequestOptions? options,
})

Sends a PUT request to endpoint with data.

Implementation

Future<CustomApiResponse> put(
  String endpoint,
  dynamic data, {
  bool includeToken = true,
  bool isMultipart = false,
  RequestOptions? options,
});