You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-07 06:16:05 +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>
6 lines
192 B
Dart
6 lines
192 B
Dart
/// An exception for the [ImageLoader] and the Immich image providers
|
|
class ImageLoadingException implements Exception {
|
|
final String message;
|
|
const ImageLoadingException(this.message);
|
|
}
|