map<R> method

  1. @override
R map<R>(
  1. covariant R callback(
    1. T1 first,
    2. T2 second,
    3. T3 third,
    4. T4 fourth,
    )
)
override

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

Implementation

@override
R map<R>(R Function(T1 first, T2 second, T3 third, T4 fourth) callback) =>
    callback(first, second, third, fourth);