js property

List<String>? get js

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

Implementation

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

Implementation

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