call method

  1. @override
Stream<Redditor> call({
  1. dynamic redditor,
  2. Map<String, String>? params,
})
override

Returns a Stream of Redditors who are moderators.

When redditor is provided, the resulting stream will contain at most one Redditor. This is useful to confirm if a relationship exists, or to fetch the metadata associated with a particular relationship.

Implementation

@override
Stream<Redditor> call(
        {/* String, RedditorRef */ redditor, Map<String, String>? params}) =>
    super.call(redditor: redditor, params: params);