Pair<T, U> constructor

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

Constructs a Pair with the given values.

Implementation

Pair(this.first, this.second);