mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 23:01:06 -08:00
10 lines
176 B
Dart
10 lines
176 B
Dart
import 'dart:async';
|
|
|
|
extension CompleterExtensions<T> on Completer<T> {
|
|
void completeOnce([FutureOr<T>? value]) {
|
|
if (!isCompleted) {
|
|
complete(value);
|
|
}
|
|
}
|
|
}
|