Open toth-istvan-zoltan opened 4 weeks ago
Implement a variant of onClick with suspend function.
onClick
Instead of:
onClick { io { modelService.addCommand(ResetNetwork(copy.id)) } close() }
we could write:
onClickSuspend(close) { modelService.addCommand(ResetNetwork(copy.id)) }
Implement a variant of
onClick
with suspend function.Instead of:
we could write: