updateMigrationManifest function

void updateMigrationManifest(
  1. String directoryPath
)

File-backed manifest updates are unavailable on web builds.

Implementation

void updateMigrationManifest(String directoryPath) {
  throw UnsupportedError(
    'updateMigrationManifest is not available on web targets because it requires filesystem access.',
  );
}