BlocStateBase

abstract class BlocStateBase<State : Any, Proposal : Any>(initialState: State) : BlocState<State, Proposal>

A convenience base class for BlocState implementations.

It implements all the BlocState function except send(Proposal).

Constructors

Link copied to clipboard
constructor(initialState: State)

Functions

Link copied to clipboard
open suspend override fun collect(collector: FlowCollector<State>)

StateStream.collect(FlowCollector)

Link copied to clipboard
abstract override fun send(proposal: Proposal)

Sink.send(Proposal)

Properties

Link copied to clipboard
open override val value: State

StateStream.value