Pair<T1, T2> constructor

Pair<T1, T2>(
  1. T1 first,
  2. T2 second
)

Constructor for the pair class

Implementation

Pair(this.first, this.second);