Tuple7<T1, T2, T3, T4, T5, T6, T7> constructor

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

Const constructor.

Implementation

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