map<R> method

  1. @override
R map<R>(
  1. covariant R callback(
    1. T1 first
    )
)
override

Applies the values of this tuple to an n-ary function.

Implementation

@override
R map<R>(R Function(T1 first) callback) => callback(first);