urls property

List<String> get urls

A list of URLs or URL patterns. Requests that cannot match any of the URLs will be filtered out.

Implementation

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

Implementation

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