verifyOperationFidelity function
Implementation
void verifyOperationFidelity(
ChangePlan plan,
Iterable<Object?> renderedOperations,
) {
if (renderedOperations.length != plan.operations.length) {
throw StateError(
'Rendered ${renderedOperations.length} operations for a plan with '
'${plan.operations.length}.',
);
}
}