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