updateWith method
Update self with future ActionResult
Implementation
Future<ActionResult> updateWith(Future<ActionResult> future) async {
await this.state.updateWith(future).forEach(emit);
return ActionResult.from(this.state);
}
Update self with future ActionResult
Future<ActionResult> updateWith(Future<ActionResult> future) async {
await this.state.updateWith(future).forEach(emit);
return ActionResult.from(this.state);
}