gilded method

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

Returns a Stream of content that has been gilded.

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.

Implementation

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