scheme property

String? get scheme

The new scheme for the request. Allowed values are "http", "https", "ftp" and "chrome-extension".

Implementation

String? get scheme => _wrapped.scheme;
set scheme (String? v)

Implementation

set scheme(String? v) {
  _wrapped.scheme = v;
}