map<P> method

  1. @override
Nothing<P> map<P>(
  1. P mapper(
    1. T value
    )
)
override

Maps the value to P.

Implementation

@override
Nothing<P> map<P>(P Function(T value) mapper) => Nothing();