updateWith method Null safety
- Future<
QueryResult< futureT> >
Update self with future QueryResult
Implementation
Future<QueryResult<T>> updateWith(Future<QueryResult<T>> future) async {
await value.updateWith(future).forEach((v) => this.value = v);
return QueryResult<T>.from(this.value);
}