map<R> method

  1. @override
R map<R>(
  1. covariant R callback(
    1. T1 first,
    2. T2 second,
    3. T3 third,
    4. T4 fourth,
    5. T5 fifth,
    6. T6 sixth,
    )
)
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, T5 fifth, T6 sixth)
            callback) =>
    callback(first, second, third, fourth, fifth, sixth);