bump method

Future<void> bump()

Increments the revision generation, invalidating any expected hash that was read before this call.

Implementation

Future<void> bump() async {
  final generation = await _readGeneration();
  await storage.writeFile(generationFile, '${generation + 1}');
}