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