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