Flow

data class Flow(val steps: List<Step>)

An A -> B flow that contains a list of Step in the order that the flow is intended to execute.

Constructors

Link copied to clipboard
fun Flow(steps: List<Step>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val steps: List<Step>

List of Steps of the given Flow