onRight method

AsyncEitherExtended<L, R> onRight(
  1. void fn(
    1. R r
    )
)

Implementation

AsyncEitherExtended<L, R> onRight(void Function(R r) fn) =>
    then((result) => result.onRight(fn));