5b01715dcd
(cherry picked from commit c72e16b576835b7748e20ab3e5cce5e1f505a65f)
9 lines
146 B
Dart
9 lines
146 B
Dart
|
|
abstract class CacheVersionClient {
|
|
|
|
String get versionKey;
|
|
|
|
Future<bool> storeVersion(int newVersion);
|
|
|
|
Future<int?> getLatestVersion();
|
|
} |