getStyleEntry method

CSSEntry<CSSValue>? getStyleEntry(
  1. String name
)

Gets a runtime style CSSEntry for name from node.

Implementation

CSSEntry? getStyleEntry(String name) {
  var style = this.style;
  return style.getEntry(name);
}