setCssVariable function

void setCssVariable(
  1. String name,
  2. String value
)

Implementation

void setCssVariable(String name, String value) {
  (web.document.documentElement as web.HTMLElement?)
      ?.style
      .setProperty(name, value);
}