reload method
Reload the future
Implementation
@override
Future<void> reload() async {
super.reload();
_stream.recompute();
_fetching = false;
_done = false;
_subscription?.cancel();
_subscription = null;
await execute(_stream.value);
}