map<B> method

Decoder<B> map<B>(
  1. B f(
    1. A
    )
)

Implementation

Decoder<B> map<B>(B Function(A) f) =>
    Decoder._unkeyed((json) => decode(json).map(f));