immich/mobile/test/riverpod_mocks.dart
shenlong 9fcbb6eefc
refactor: mobile edit asset actions (#30264)
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2026-08-01 08:06:42 +05:30

8 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);
}
}