hidden method

Stream<UserContent> hidden({
  1. int? limit,
  2. String? after,
  3. Map<String, String>? params,
})

Returns a Stream of content that the user has hidden.

limit is the maximum number of objects returned by Reddit per request (the default is 100). If provided, after specifies from which point Reddit will return objects of the requested type. params is a set of additional parameters that will be forwarded along with the request.

May raise an exception on access if the current user is not authorized to access this list.

Implementation

Stream<UserContent> hidden(
        {int? limit, String? after, Map<String, String>? params}) =>
    ListingGenerator.createBasicGenerator(reddit, path + 'hidden',
        limit: limit, after: after, params: params);