Pair<T, U> constructor

Pair<T, U>(
  1. T? first,
  2. U? second
)

Implementation

Pair(this.first, this.second);