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