withThird<T> method

Tuple6<T1, T2, T, T4, T5, T6> withThird<T>(
  1. T value
)

Returns a new tuple with the third element replaced by value.

Implementation

Tuple6<T1, T2, T, T4, T5, T6> withThird<T>(T value) =>
    Tuple6(first, second, value, fourth, fifth, sixth);