mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
7 lines
87 B
Dart
7 lines
87 B
Dart
class KeyValuePair<K, V>
|
|
{
|
|
K key;
|
|
V value;
|
|
|
|
KeyValuePair(this.key, this.value);
|
|
} |