patch<T> method

Future<ResponseModel<T>> patch<T>({
  1. FromJson<T>? fromJson,
  2. bool expectJsonArray = false,
})

PATCH

Implementation

Future<ResponseModel<T>> patch<T>({
  FromJson<T>? fromJson,
  bool expectJsonArray = false,
}) async {
  return await _request<T>(
    RequestMethod.PATCH,
    fromJson: fromJson,
    expectJsonArray: expectJsonArray,
  );
}