addSecond<T> method

Tuple7<T1, T, T2, T3, T4, T5, T6> addSecond<T>(
  1. T value
)

Returns a new tuple with value added at the second position.

Implementation

Tuple7<T1, T, T2, T3, T4, T5, T6> addSecond<T>(T value) =>
    Tuple7(first, value, second, third, fourth, fifth, sixth);