targetUrlPatterns property

List<String>? get targetUrlPatterns

Similar to documentUrlPatterns, filters based on the src attribute of img, audio, and video tags and the href attribute of a tags.

Implementation

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

Implementation

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