Pair<F, S> constructor

Pair<F, S>(
  1. F first,
  2. S second
)

Constructor for the Pair class

Implementation

Pair(this.first, this.second);