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