Tuple<T1, T2> constructor

Tuple<T1, T2>(
  1. T1 item1,
  2. T2 item2
)

Implementation

Tuple(this.item1, this.item2);