Tuple2<T, U, V> constructor

const Tuple2<T, U, V>(
  1. T first,
  2. U second,
  3. V third
)

Implementation

const Tuple2(this.first, this.second, this.third);