asJSONPaging property
JSONPaging?
get
asJSONPaging
Returns body as a JSONPaging.
Implementation
JSONPaging? get asJSONPaging {
if (isBodyTypeJSON) {
return JSONPaging.from(json);
}
return null;
}