ids property

List<String>? get ids

If specified, getRegisteredContentScripts will only return scripts with an id specified in this list.

Implementation

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

Implementation

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