Tuple6<T1, T2, T3, T4, T5, T6> constructor

const Tuple6<T1, T2, T3, T4, T5, T6>(
  1. T1 first,
  2. T2 second,
  3. T3 third,
  4. T4 fourth,
  5. T5 fifth,
  6. T6 sixth,
)

Const constructor.

Implementation

const Tuple6(
    this.first, this.second, this.third, this.fourth, this.fifth, this.sixth);