hot method

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

Returns a Stream of hot comments and submissions.

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<UserContent> hot(
        {int? limit, String? after, Map<String, String>? params}) =>
    _buildGenerator(limit, after, params, 'hot');