fetch method

  1. @override
Future fetch()
override

Requests the data associated with the current object.

Implementation

@override
Future<dynamic> fetch() async => await _throwOnInvalidSubreddit(
    () async => await reddit.get(infoPath,
        params: infoParams, followRedirects: false),
    false);