rawCss property
The raw, un-scoped CSS source provided by the author.
Retains the exact original stylesheet string passed to ScopedCss.compile prior to selector rewriting.
final styles = scopedCss('.card { color: red; }');
print(styles.rawCss); // '.card { color: red; }'
Implementation
final String rawCss;