css property

List<String>? get css

Names of CSS files to be injected as a part of the content script.

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);
}