maxResults property
int?
get
maxResults
The maximum number of entries to be fetched in the requested list. Omit
this parameter to fetch the maximum number of entries
(sessions.MAX_SESSION_RESULTS
).
Implementation
int? get maxResults => _wrapped.maxResults;
set
maxResults
(int? v)
Implementation
set maxResults(int? v) {
_wrapped.maxResults = v;
}