matches property

List<String>? get matches

Specifies which pages this content script will be injected into. See Match Patterns for more details on the syntax of these strings. Must be specified for registerContentScripts.

Implementation

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

Implementation

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