Filter constructor
Filter({
- int? maxResults,
Implementation
Filter(
{
/// 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]).
int? maxResults})
: _wrapped = $js.Filter(maxResults: maxResults);