hash property
The deterministic 7-character hex hash derived from the CSS content and name.
Generated via fnv1a32 on '$name:$rawCss' (or rawCss if name is omitted).
Appended to all scoped class names to prevent collisions.
final styles = scopedCss('.badge { padding: 4px; }', name: 'badge');
print(styles.hash); // e.g. 'a1b2c3d'
Implementation
final String hash;