pair.dart 90 B

123456
  1. class Pair<F, S> {
  2. final F first;
  3. final S second;
  4. Pair(this.first, this.second);
  5. }