fetch method

Future fetch()

Implementation

Future fetch() async {
  final data = await source();
  postFrameFuture(() => this.value = data);
  return data;
}