mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
9 lines
348 B
Dart
9 lines
348 B
Dart
|
|
import 'package:immich_mobile/models/server_info/server_version.model.dart';
|
||
|
|
import 'package:immich_mobile/providers/server_info.provider.dart';
|
||
|
|
|
||
|
|
class StubServerInfoNotifier extends ServerInfoNotifier {
|
||
|
|
StubServerInfoNotifier(super.serverInfoService, {required ServerVersion version}) {
|
||
|
|
state = state.copyWith(serverVersion: version);
|
||
|
|
}
|
||
|
|
}
|