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