trophies method

Future<List<Trophy>> trophies()

Returns a list of Trophy that this Redditor has

Implementation

Future<List<Trophy>> trophies() async {
  final response = await reddit.get(
      apiPath['trophies'].replaceAll(RedditorRef._usernameRegExp, _name));
  return List.castFrom<dynamic, Trophy>(response);
}