map<B> method

Effect<B, E, R> map<B>(
  1. B f(
    1. A
    )
)

Maps the success value of this effect

Implementation

Effect<B, E, R> map<B>(B Function(A) f) => _Map(this, f);