Async Transaction
data class AsyncTransaction(val id: String, val operations: List<suspend () -> Unit>, val transactionHasBeenApplied: MutableStateFlow<Boolean>)
Constructors
Link copied to clipboard
fun AsyncTransaction(id: String, operations: List<suspend () -> Unit>, transactionHasBeenApplied: MutableStateFlow<Boolean>)