You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-14 07:04:24 +02:00
* enable border radius, switch exp, const constructor * regenerate provider * more formatting --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
10 lines
260 B
Dart
10 lines
260 B
Dart
import 'package:immich_mobile/constants/errors.dart';
|
|
|
|
abstract class ApiRepository {
|
|
Future<T> checkNull<T>(Future<T?> future) async {
|
|
final response = await future;
|
|
if (response == null) throw const NoResponseDtoError();
|
|
return response;
|
|
}
|
|
}
|