flatMap<B, E2, R2> method

Effect<B, E2, R2> flatMap<B, E2, R2>(
  1. Effect<B, E2, R2> f(
    1. A
    )
)

Flat maps this effect with another effect

Implementation

Effect<B, E2, R2> flatMap<B, E2, R2>(
  Effect<B, E2, R2> Function(A) f,
) => _FlatMap(this, f);