schemes property

List<String>? get schemes

Matches if the scheme of the URL is equal to any of the schemes specified in the array.

Implementation

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

Implementation

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