mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
3 lines
97 B
Dart
3 lines
97 B
Dart
extension Let<T extends Object> on T {
|
|
R let<R>(R Function(T) transform) => transform(this);
|
|
}
|