css property

List<String>? get css

The list of CSS files to be injected into matching pages. These are injected in the order they appear in this array, before any DOM is constructed or displayed for the page.

Implementation

List<String>? get css =>
    _wrapped.css?.toDart.cast<String>().map((e) => e).toList();
set css (List<String>? v)

Implementation

set css(List<String>? v) {
  _wrapped.css = v?.toJSArray((e) => e);
}