refresh method

  1. @override
Future<WikiPage> refresh()
override

Requests updated information from the Reddit API and updates the current object properties.

Implementation

@override
Future<WikiPage> refresh() async {
  final result = await fetch();
  setData(this, result.data);
  return this;
}