mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
9 lines
190 B
Dart
9 lines
190 B
Dart
|
|
/// An immutable pair or 2-tuple
|
||
|
|
/// TODO replace with Record once Dart 2.19 is available
|
||
|
|
class Pair<T1, T2> {
|
||
|
|
final T1 first;
|
||
|
|
final T2 second;
|
||
|
|
|
||
|
|
const Pair(this.first, this.second);
|
||
|
|
}
|